+ 2
What represent $$in php
means if $name="hello"; $say=hi; echo $$name;
1 Odpowiedź
+ 3
$ is a variable accessor.
Multiple $s means it checks the value of the first $variable, let it be var
Then the next $ checks the value of $var, qnd so on
means if $name="hello"; $say=hi; echo $$name;