If the variable $a is equal to 5 and variable $b is equal to
character a, what’s the value of $$b?
Can anyone explain how's the value of $$b=100
Answer Posted / rakesh r
$a = 5
$b = 'a'
$$b = ?
$b value is a
so, $$b = $a = 5
hence, ans is 5
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
How to delete cookie files on your computer?
How can we destroy the cookie in php?
How can i execute PHP File using Command Line?
What is php array function?
How to get the total number of values in an array?
What is new keyword in php?
What is difference between static and constant in php?
What is difference between single quotes and double quotes in php?
What is difference between mysql_connect and mysqli_connect?
Explain what does $_server means?
How do I clear my browser session?
Do you know how to enable error reporting in php?
Where sessions stored in PHP?
How to get complete current page url in php?
What is Type hinting in PHP?