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.
 
 

29 lines
675 B

--TEST--
Test array_shift() function : usage variations - position of internal pointer
--FILE--
<?php
/*
* Test that the internal pointer is reset after calling array_shift()
*/
echo "*** Testing array_shift() : usage variations ***\n";
$stack = array ('one' => 'un', 'two' => 'deux');
echo "\n-- Call array_shift() --\n";
var_dump($result = array_shift($stack));
echo "\n-- Position of Internal Pointer in Passed Array: --\n";
echo key($stack) . " => " . current ($stack) . "\n";
echo "Done";
?>
--EXPECT--
*** Testing array_shift() : usage variations ***
-- Call array_shift() --
string(2) "un"
-- Position of Internal Pointer in Passed Array: --
two => deux
Done