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.
 
 

24 lines
354 B

--TEST--
Bug #21998 (array_pop() does not reset the current array position)
--FILE--
<?php
$a = array("a", "b", "c");
var_dump(key($a));
var_dump(array_pop($a));
var_dump(key($a));
var_dump(array_pop($a));
var_dump(key($a));
var_dump(array_pop($a));
var_dump(key($a));
?>
--EXPECT--
int(0)
string(1) "c"
int(0)
string(1) "b"
int(0)
string(1) "a"
NULL