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.
17 lines
358 B
17 lines
358 B
--TEST--
|
|
Bug #62607: array_walk_recursive move internal pointer
|
|
--SKIPIF--
|
|
<?php
|
|
if (true) die("skip AOT does not support reference parameters in closures");
|
|
?>
|
|
|
|
--FILE--
|
|
<?php
|
|
$arr = array('a'=>'b');
|
|
echo 'Before -> '.current($arr).PHP_EOL;
|
|
array_walk_recursive($arr, function(&$val){});
|
|
echo 'After -> '.current($arr);
|
|
?>
|
|
--EXPECT--
|
|
Before -> b
|
|
After -> b
|
|
|