ID:               24118
 Updated by:       [EMAIL PROTECTED]
 Reported By:      young at sl dot com dot ua
-Status:           Open
+Status:           Assigned
-Bug Type:         Arrays related
+Bug Type:         Scripting Engine problem
 Operating System: FreeBSD 4.7
-PHP Version:      4.3.2
+PHP Version:      4.3.3-dev, 5.0.0-dev
-Assigned To:      
+Assigned To:      zeev
 New Comment:

Zeev, here is first one I verified with both 4.3.3-dev and 5.0.0-dev.
Have fun fixing this one. :)



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

[2003-06-10 17:32:00] young at sl dot com dot ua

Sample code to make this bug:
<?php
$arr = array(1, 2, 3, 4, 5);
$sizeOf = sizeof($arr);
for ($i = 0; $i < $sizeOf; $i++) {
        $row =& $arr[$i];
        $row = $row * $row;
}
foreach ($arr as $row) {
echo $row."<br>";
}
?>
Return
1
4
9
16
16

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

[2003-06-10 17:24:46] [EMAIL PROTECTED]

Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.


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

[2003-06-10 17:20:10] young at sl dot com dot ua

Source code N1:
-----
foreach ($sqldata as $row) {
$item = $row;
print_r($item);
}
-----
Result 1:
Array
(
[DURATION] => 7
)
Array
(
[DURATION] => 230
)
Array
(
[DURATION] => 230
)
-----
Source code 2:
-----
foreach ($sqldata as $item) {
print_r($item);
}
-----
Result 2:
-----
Array
(
[DURATION] => 7
)
Array
(
[DURATION] => 230
)
Array
(
[DURATION] => 50
)
------

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


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

Reply via email to