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 / rakesh r
$a = 5
$b = 'a'
$$b = ?
$b value is a
so, $$b = $a = 5
hence, ans is 5
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
Is php front end?
How can we change the value of a constant?
What are the four scalar types of php?
What is csrf cookie?
What is the use of count() function in php?
What does addslashes do in php?
What is the mysql injection?
What is the best practice for running mysql queries in php? Consider the risk of sql injection.
Which function would you use to merge two arrays in php?
Explain about the data types in PHP?
How arrays are used in php?
Why overriding is called runtime polymorphism?
Whether it is possible to share a single instance of a memcache between multiple php projects?
Tell me in php, objects are they passed by value or by reference?
What is php stack?