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.
34 lines
402 B
34 lines
402 B
--TEST--
|
|
Closure 003: Lambda with lexical variables (local scope)
|
|
--FILE--
|
|
<?php
|
|
|
|
function run () {
|
|
$x = 4;
|
|
|
|
$lambda1 = function () use ($x) {
|
|
echo "$x\n";
|
|
};
|
|
|
|
$lambda2 = function () use (&$x) {
|
|
echo "$x\n";
|
|
};
|
|
|
|
$lambda1();
|
|
$lambda2();
|
|
$x++;
|
|
$lambda1();
|
|
$lambda2();
|
|
}
|
|
|
|
function main() {
|
|
run();
|
|
echo "Done\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
4
|
|
4
|
|
4
|
|
5
|
|
Done
|
|
|