|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-03-10 12:37 UTC] andi at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 16:00:01 2025 UTC |
Hello, when I define a two dimensional array with something like for .... { $row1 = sybase_fetch_row($result); $datum = $row1[1]; $row_w[$datum][1] = $row1[1]; $row_w[$datum][2] = $row1[2]; $row_w[$datum][3] = $row1[3]; $row_w[$datum][4] = $row1[4]; $row_w[$datum][5] = $row1[5]; $row_w[$datum][6] = $row1[6]; } sometimes (not everytime) for example $row_w[$datum][2] as the value "array" insted of the actual value. Sometimes the array values are copied instead of containing the correct value. This worked fine under php3. Regards Torsten