mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
26 lines
301 B
PHP
26 lines
301 B
PHP
--TEST--
|
|
Testing recursion detection with Closures
|
|
--FILE--
|
|
<?php
|
|
|
|
$x = function () use (&$x) {
|
|
$h = function () use ($x) {
|
|
var_dump($x);
|
|
return 1;
|
|
};
|
|
return $h();
|
|
};
|
|
|
|
var_dump($x());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(Closure)#%d (1) {
|
|
["static"]=>
|
|
array(1) {
|
|
["x"]=>
|
|
*RECURSION*
|
|
}
|
|
}
|
|
int(1)
|