WordPress Question: Download WordPress (CMS) PDF

Suppose If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of $$b?

Tweet Share WhatsApp

Answers:

Answer #1100, it’s a reference to existing variable.

Answer #25, $$b acts as a variable variable and would be the same as writing $a.

Answer #3$a=5; $b=\\"a\\";
echo $$b;
it will be 5 not 100;


Download WordPress (CMS) PDF Read All 32 WordPress (CMS) Questions
Previous QuestionNext Question
What is the difference between accessing a class method via -> and via ::?How to find out the number of parameters passed into function?