TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
477 B
37 lines
477 B
--TEST--
|
|
Closure 004: Lambda with lexical variables (scope lifetime)
|
|
--FILE--
|
|
<?php
|
|
|
|
function run () {
|
|
$x = 4;
|
|
|
|
$lambda1 = function () use ($x) {
|
|
echo "$x\n";
|
|
};
|
|
|
|
$lambda2 = function () use (&$x) {
|
|
echo "$x\n";
|
|
$x++;
|
|
};
|
|
|
|
return array($lambda1, $lambda2);
|
|
}
|
|
|
|
function main() {
|
|
list ($lambda1, $lambda2) = run();
|
|
|
|
$lambda1();
|
|
$lambda2();
|
|
$lambda1();
|
|
$lambda2();
|
|
|
|
echo "Done\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
4
|
|
4
|
|
4
|
|
5
|
|
Done
|
|
|