|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[1998-04-02 11:49 UTC] steve at eyekon dot com
In Big Manual, Variable Variable section:
$$a = "world";
change to:
${$a} = "world";
and
echo "$a $$a";
change to:
echo "$a ${$a}";
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 00:00:01 2025 UTC |
$$a="world" is fine. But you are right, the example should be "$a ${$a}"