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.
56 lines
718 B
56 lines
718 B
--TEST--
|
|
Bug #31213 (Sideeffects caused by bug #29493)
|
|
--SKIPIF--
|
|
<?php
|
|
if (true) die("skip AOT does not support extract()");
|
|
?>
|
|
|
|
--FILE--
|
|
<?php
|
|
function test($use_extract)
|
|
{
|
|
$a = 1;
|
|
$b = 1;
|
|
$arr = array('_a' => $a, '_b' => &$b);
|
|
var_dump($a, $b);
|
|
if ($use_extract) {
|
|
extract($arr, EXTR_REFS);
|
|
} else {
|
|
$_a =& $arr['_a'];
|
|
$_b =& $arr['_b'];
|
|
}
|
|
$_a++;
|
|
$_b++;
|
|
var_dump($a, $b, $_a, $_b, $arr);
|
|
}
|
|
function main()
|
|
{
|
|
test(false);
|
|
test(true);
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(1)
|
|
int(1)
|
|
int(2)
|
|
int(2)
|
|
int(2)
|
|
array(2) {
|
|
["_a"]=>
|
|
&int(2)
|
|
["_b"]=>
|
|
&int(2)
|
|
}
|
|
int(1)
|
|
int(1)
|
|
int(1)
|
|
int(2)
|
|
int(2)
|
|
int(2)
|
|
array(2) {
|
|
["_a"]=>
|
|
&int(2)
|
|
["_b"]=>
|
|
&int(2)
|
|
}
|
|
|