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 / annonymus
<?php
$a=5;
echo $b='a'."<br/>";
echo $$b;
?>
output is neither 5 or 100,
it displays
a
but if you try this...
<?php
$user = 'bob';
$holder = 'user';
echo $$holder;
?>
answer becomes like this..
bob
try it....this really really confusing..anyone can give the
exact solution to this????
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
Is php an oop?
Does php need html?
Xplain is it possible to use com component in php?
How can we submit from without a submit button?
What is php and sql?
How can we pass the variable through the navigation between the pages?
What is the meaning of die in php?
Do while loops?
How is it possible to remove escape characters from a string?
Does empty check for null?
When do sessions end?
Can you use both this () and super () in a constructor?
Tell me will a comparison of an integer 12 and a string "13" work in php?
How to pass variables and data from php to javascript?
Can you extend a final defined class?