ID: 14791
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Arrays related
Operating System: Linux 2.4.9
PHP Version: 4.1.1
New Comment:

Scuse me, a little error by my hands ... ;(

normally i should have :

before : Array ( [1] => 1 [2] => 2 [3] => 3 [4] => 4 [5] => 5 [6] => 6 )

next : Array ( [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) 

Regards,

Philippe BEAU
Email / Philippe--at--beau.nom.Fr

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

[2002-01-01 13:20:40] [EMAIL PROTECTED]

This script : 

<?
        print "before : ";
        for ($i=1;$i<=6;$i++) {
                $toto[$i] = $i;
        }
        print_r($toto);
        print "<br>\n";
        array_shift($toto);
        print "next : ";
        print_r($toto);
        print "<br>\n"; 
?>

give this :

before : Array ( [1] => 1 [2] => 2 [3] => 3 [4] => 4 [5] => 5 [6] => 6 ) 
next : Array ( [0] => 2 [1] => 3 [2] => 4 [3] => 5 [4] => 6 ) 

normally i should have :

before : Array ( [1] => 1 [2] => 2 [3] => 3 [4] => 4 [5] => 5 [6] => 6 ) 
next : Array ( [1] => 2 [1] => 3 [2] => 4 [3] => 5 [4] => 6 ) 

Regards,

Philippe BEAU
Email / Philippe--at--beau.nom.Fr

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



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


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to