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
230 B

--TEST--
Fixed #69166 (Assigning array_values() to array does not reset key counter)
--FILE--
<?php
$array = [0];
$ar = array_values($array);
$ar[] = 1;
var_dump($ar);
?>
--EXPECT--
array(2) {
[0]=>
int(0)
[1]=>
int(1)
}