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.
23 lines
359 B
23 lines
359 B
--TEST--
|
|
Bug #70808 (array_merge_recursive corrupts memory of unset items)
|
|
--FILE--
|
|
<?php
|
|
|
|
$arr1 = array("key" => array(0, 1));
|
|
$arr2 = array("key" => array(2));
|
|
|
|
unset($arr1["key"][1]);
|
|
|
|
$result = array_merge_recursive($arr1, $arr2);
|
|
print_r($result);
|
|
?>
|
|
--EXPECT--
|
|
Array
|
|
(
|
|
[key] => Array
|
|
(
|
|
[0] => 0
|
|
[2] => 2
|
|
)
|
|
|
|
)
|
|
|