ID:               30968
 User updated by:  cow at neondragon dot net
 Reported By:      cow at neondragon dot net
-Status:           Feedback
+Status:           Closed
 Bug Type:         Arrays related
 Operating System: Windows XP
 PHP Version:      4.3.10RC1
 New Comment:

Sorry, I should have tried that earlier. It seemed like the php.ini I
was using from a previous version caused some problems; nothing to do
with any extensions. Sorry!


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

[2004-12-02 23:42:24] [EMAIL PROTECTED]

Works fine here, please remove all Zend extensions from your
configuration, and try again.

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

[2004-12-02 23:30:33] cow at neondragon dot net

Description:
------------
I'm pretty sure this isn't supposed to happen - it didn't happen with
earlier versions of PHP, and nothing in the manual documents it. It
happens with the RC of 4.3.10. 

Reproduce code:
---------------
<?php
$foo = array(1,2,3);
foreach ($foo as $i) {
print_r($i);
}

/*
Result of code:
Array ( [0] => 1 [1] => 0 )
Array ( [0] => 2 [1] => 1 )
Array ( [0] => 3 [1] => 2 )
*/
?>

Expected result:
----------------
The string 1, then string 2, then string 3 - not arrays each time.



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


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

Reply via email to