php-src/Zend/tests/closure_009.phpt

32 lines
374 B
Plaintext
Raw Normal View History

2008-07-08 07:05:04 +00:00
--TEST--
2008-07-14 12:35:51 +00:00
Closure 009: Using static vars inside lambda
2008-07-08 07:05:04 +00:00
--FILE--
<?php
$a = 1;
$x = function ($x) use ($a) {
static $n = 0;
$n++;
$a = $n.':'.$a;
echo $x.':'.$a."\n";
};
$y = function ($x) use (&$a) {
static $n = 0;
$n++;
$a = $n.':'.$a;
echo $x.':'.$a."\n";
};
$x(1);
$x(2);
$x(3);
$y(4);
$y(5);
$y(6);
?>
--EXPECT--
1:1:1
2:2:1
3:3:1
4:1:1
5:2:1:1
6:3:2:1:1