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 / rajkumar
<?php
//If the variable $a is equal to 5 and variable $b is equal
to character a, what’s the value of $$b?
$a =5;
$b=$a;
$c= $$b;
print_r($c);
?>
it will not display any answer so answer is wrong
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is strcmp?
What are the features and advantages of object-oriented programming in php?
Explain how is it possible to set an infinite execution time for php script?
What is action hooks and filter hooks?
What is php date function?
Is it possible to use com component in php?
Tell me how to retrieve a cookie value?
How are variables declared in php?
What is Apache's configuration file typically called?
How can we display information of a variable and readable by human with php?
Explain how you can update memcached when you make changes to php?
What is php beginner?
How to write php function in html onclick?
How is traits used in php?
How to get ip address of a server in php?