php-src/Zend/tests/closure_010.phpt
2008-07-08 07:05:04 +00:00

23 lines
319 B
PHP

--TEST--
Closure 010: Closure calls itself
--SKIPIF--
<?php
if (!class_exists('Closure')) die('skip Closure support is needed');
?>
--FILE--
<?php
$i = 3;
$lambda = function ($lambda) use (&$i) {
if ($i==0) return;
echo $i--."\n";
$lambda($lambda);
};
$lambda($lambda);
echo "$i\n";
?>
--EXPECT--
3
2
1
0