|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-17 09:49 UTC] rasmus at cvs dot php dot net
[2000-07-17 09:49 UTC] stas at cvs dot php dot net
[2000-07-17 09:58 UTC] rasmus at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Mar 20 18:00:01 2026 UTC |
<?php $a[0] = "hello"; $a = "world"; print($a[0] . "\n"); print($a . "\n"); ?> The following code misbehaves as well: <?php $a = "world"; $a[0] = "hello"; print($a . "\n"); print($a[0] . "\n"); ?>