php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #4159 Wrong count array after unset()
Submitted: 2000-04-16 12:05 UTC Modified: 2002-09-30 18:18 UTC
From: cbob at builder dot cz Assigned:
Status: Not a bug Package: Other
PHP Version: 3.0 Latest CVS (16/04/2000) OS: Linux RH,
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
16 - 7 = ?
Subscribe to this entry?

 
 [2000-04-16 12:05 UTC] cbob at builder dot cz
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....

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-09-30 18:18 UTC] hholzgra@php.net
unsetting an array element doesn't renumber the element keys
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri May 17 08:01:35 2024 UTC