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 / birend gupta
<?php
$a=5;
$b='a';
echo $$b;
?>
Output : 5
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What does $_files means?
What is member function?
Explain PHP?
How would you open a directory for reading in php?
What is php written in?
Why php is used with mysql?
Is php secure?
Where can I find php ini file?
How to download and install php on windows?
How many ways to include variables in double-quoted strings in php?
What is regular expression in javascript?
How to convert strings to numbers in php?
Whether it is possible to share a single instance of a memcache between multiple php projects?
In how many ways we can retrieve the data in the result set of mysql using php?
What are the benefits of composer?