$a=’hello’;
$$a = ‘php’;
$$$a=’world’;
echo “$a ${$a} ${${$a}}”;
Output : ==>hello php world
More Information : http://www.php.net/manual/en/language.variables.variable.php
More Information : http://www.php.net/manual/en/language.variables.variable.php
Leave a Reply