Tag: Variable
-
what is the diffrence between echo ‘$a’, echo “$a” and echo $a?
$a=”Hello”; echo $a; // hello echo ‘$a’; // $a echo “$a”; // hello
-
what is the difference between $a and $aa?
$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
