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
How to check a key exist in an array?
What are the benefits of using queries?
What is difference between put and post method in http?
Is it worth learning php in 2019?
How can we determine whether a php variable is an instantiated object of a certain class?
How to take a substring from a given string?
Explain about looping in PHP?
How to create a session? How to remove data from a session?
What are the encryption techniques in php?
What is pdo classes?
What is multidimensional array in php?
What is php pathinfo?
How to remove a file?
Which have the fastest execution between mysql_fetch_array() and mysql_fetch_assoc()
Which of the delimiter is ASP style?