From:             tomas_matousek at hotmail dot com
Operating system: WinXP
PHP version:      5.1.2
PHP Bug Type:     Arrays related
Bug description:  $a[] doesn't work correctly after array_pop

Description:
------------
Operator $a[] doesn't add a correct key to the array if applied after
popping from array. It seems array_pop merely checks whether the removed
index is the max. int key remembered by the array and if yes it decreases
it by 1. I would expect array_pop to find the new maximal key in the
resulting array.

Reproduce code:
---------------
$a = array("a","b",100 => "c",200 => "d");
array_pop($a);
array_pop($a);
$a[] = "new";
var_dump($a);

Expected result:
----------------
array(3) {
  [0]=>
  string(1) "a"
  [1]=>
  string(1) "b"
  [2]=>
  string(3) "new"
}




Actual result:
--------------
array(3) {
  [0]=>
  string(1) "a"
  [1]=>
  string(1) "b"
  [199]=>
  string(3) "new"
}




-- 
Edit bug report at http://bugs.php.net/?id=36391&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=36391&r=trysnapshot44
Try a CVS snapshot (PHP 5.1): 
http://bugs.php.net/fix.php?id=36391&r=trysnapshot51
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=36391&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=36391&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=36391&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=36391&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=36391&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=36391&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=36391&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=36391&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=36391&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=36391&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=36391&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=36391&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=36391&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=36391&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=36391&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=36391&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=36391&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=36391&r=mysqlcfg

Reply via email to