File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / array / bug21998.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 6 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>