ID: 4159
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Bogus
Bug Type: Other
Operating System: Linux RH,
PHP Version: 3.0 Latest CVS (16/04/2000)
New Comment:
unsetting an array element doesn't renumber the element keys
Previous Comments:
------------------------------------------------------------------------
[2000-04-16 12:05:28] [EMAIL PROTECTED]
Test script:
------------
$x=array(1,2,3,4,5,6,7,8);
for($i=0; $i<count($x); $i++)
echo $x[$i]."<br>\n";
unset($x[2]);
echo "<hr>";
for($i=0; $i<count($x); $i++)
echo $x[$i]."<br>\n";
Output:
1
2
3
4
5
6
7
8
------------------------------------------------------------
1
2
4
5
6
7
but I thing, that it may be:
1
2
4
5
6
7
8
?????
It test it under:
PHP-3.0.12
and
PHP-4.0b1
and it is the same....
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=4159&edit=1