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 / sandhya
If the $a is equal to 5 and $b is equal
to character a,so
$a=5;
$b="a";
$$b = $( $b ) = $ ( 'a' ) = $a = 5 ;
Of course Answer should be 5 !!
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the tags in PHP is not a valid way to begin and end a PHP code block?
What is php used for?
Why do we use session?
What are the different types of php variables?
What is sql injection in php?
Why do we use polymorphism in php?
Explain what does the unset() function means?
Who is the father or inventor of php?
I am writing an application in php that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with php?
How can we get the error when there is a problem to upload a file?
Which will check if a function exists?
Tell us what does $_cookie means?
What is csrf mvc?
What is the default time of cookie in php?
Tell me what is the difference between get and post?