Sr. PHP Programmer Question:

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

Tweet Share WhatsApp

Answer:

They are both variables. But $var is a variable with a fixed name. $$var is a variable who's name is stored in $var. For example, if $var contains "message", $$var is the same as $message.

Download Senior PHP Programmer PDF Read All 202 Senior PHP Programmer Questions
Previous QuestionNext Question
Are objects in PHP 5 passed by value or reference?What does "&" mean in '&$var'?