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.
 
 

20 lines
287 B

--TEST--
Bug #75653: array_values don't work on empty array
--FILE--
<?php
$array[] = 'data1';
unset($array[0]);
$array = array_values($array);
$array[] = 'data2';
$array[] = 'data3';
var_dump($array);
?>
--EXPECT--
array(2) {
[0]=>
string(5) "data2"
[1]=>
string(5) "data3"
}