Sr. PHP Programmer Question:

What is the difference between $var and $$var in PHP?

Senior PHP Programmer Interview Question
Senior PHP Programmer Interview Question

Answer:

$$var sets the value of $var as a variable.

$day='monday';
$$day='first day of week';
echo $monday; //outputs 'first day of week'


Previous QuestionNext Question
How do you load classes in PHP?How can we get the IP address of the client?