|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-06-26 14:54 UTC] zeev
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 16:00:01 2025 UTC |
hudson{root}199: more junk <? $a = "hello"; $$a = "again"; echo $a, "\n"; echo $hello, "\n"; echo $$a, "\n"; echo "$a $$a\n"; ?> Here's the result: hudson{root}200: php junk Content-type: text/html hello again again hello $hello hudson{root}201: