php-src/ext/standard/tests/array/bug21998.phpt
Steph Fox 833f4150a1 - killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
2008-05-26 23:36:10 +00:00

25 lines
375 B
PHP

--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)
unicode(1) "c"
int(0)
unicode(1) "b"
int(0)
unicode(1) "a"
NULL