ID:               21998
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Verified
+Status:           Analyzed
-Bug Type:         Arrays related
+Bug Type:         Documentation problem
 Operating System: all
 PHP Version:      4.3.0
 New Comment:

I have fixed this now in CVS. But the docs should mention
that the pointer is reset by array_pop/array_shift.




Previous Comments:
------------------------------------------------------------------------

[2003-02-03 10:51:39] [EMAIL PROTECTED]

Clarification: In PHP 4.2.3, the current array position
was reset after array_pop() and array_shift().


------------------------------------------------------------------------

[2003-02-03 00:39:14] [EMAIL PROTECTED]

[EMAIL PROTECTED]: I reverted my changes, not my fault. :-p

But there is indeed some bug in this, since array_pop()
should not affect the current key. 



------------------------------------------------------------------------

[2003-02-01 15:08:57] [EMAIL PROTECTED]

Array related. 
One of these commits broke it. 
 
revision 1.180 
date: 2002/08/01 17:34:31;  author: rodif_bl;  state: Exp;  
lines: +12 -15 
array_pop wasnt setting next index 
---------------------------- 
revision 1.179 
date: 2002/08/01 16:44:47;  author: sniper;  state: Exp;  
lines: +1 -4 
That was not correct.. 
---------------------------- 
revision 1.178 
date: 2002/08/01 16:39:52;  author: sniper;  state: Exp;  
lines: +5 -2 
Reset index when doing array_pop() 
 

------------------------------------------------------------------------

[2003-02-01 13:42:12] [EMAIL PROTECTED]

<?
  $a = array("a", "b", "c");
  each($a);
  array_pop($a);
  var_dump(each($a));
?>

This prints "bool(false)" in 4.3.0 (current element pointer points
somewhere out of the array) and var_dump($a[0]) in 4.2.3 (array is
reset after array_pop).

I had to add many additional reset()'s after installing 4.3.0.

How array_pop() (and may be others) affects current element pointer is
not documented, so this behavior is not a bug. The only purpose of
writing all this is that I want to know how array_pop() will work in
future PHP releases.

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=21998&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to