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.
 
 

27 lines
331 B

--TEST--
Bug #71837 (Wrong arrays behaviour)
--FILE--
<?php
$p = array(array());
array_push($p[0], array(100));
$c = array_merge($p, array());
$c[0][0] = 200;
print_r($p);
?>
--EXPECT--
Array
(
[0] => Array
(
[0] => Array
(
[0] => 100
)
)
)