ID:               48789
 Updated by:       der...@php.net
 Reported By:      ehsmeng at gmail dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         Arrays related
 Operating System: Windows XP
 PHP Version:      5.2.10
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.

.


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

[2009-07-03 15:48:17] ehsmeng at gmail dot com

Sorry, forgot: If I change &$row to $row in the first foreach all works
as I expect it to.

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

[2009-07-03 15:46:04] ehsmeng at gmail dot com

Description:
------------
The last foreach seems to corrupt $rows_unsorted. The last var_dump()
in the log reports false.

Reproduce code:
---------------
    $rows_unsorted = array();
    for ($i = 0; $i < 4; $i++)
    {
        array_push($rows_unsorted, array("apa" . $i));
    }

    $rows_index = array();
    foreach ($rows_unsorted as $k => &$row)
    {
        array_push($rows_index, sprintf("%03d_%d", strlen($row[0]),
$k));
    }

    for ($i = 0; $i < 4; $i++)
    {
        var_dump($rows_unsorted[$i]);
    }

    foreach ($rows_index as $idx)
    {
        list ($len, $rowOffs) = split('_', $idx);
        $row = false;
        $row = $rows_unsorted[0 + $rowOffs];

        var_dump($row);
    }

Expected result:
----------------
I was expecting all values in $rows_unsorted to have been dumped.



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


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

Reply via email to