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 / joydeep
Given $a = 5;
$b = 'a';
So, $$b = $($b) = $a = 5
Simple, there is no concept of ASCII is applicable here....
For more Web Tech Info contact me.........Joydeep
| Is This Answer Correct ? | 79 Yes | 12 No |
Post New Answer View All Answers
What is the use of "echo" in php?
Tell me how is it possible to remove escape characters from a string?
sort term descripttion form, report and uery
How can you propagate a session id?
Why triggers are used in mysql?
What is the best way to test the strpos() return value in php?
Explain me what is the difference between $_files['userfile']['name'] and $_files['userfile']['tmp_name']?
How are variables declared in php?
Tell me which function gives us the number of affected entries by a query?
Tell me what is the difference between characters 34 and x34?
Code to upload a file in PHP?
How to replace a substring in a given string in php?
Explain soundex() and metaphone().
How is the ternary conditional operator used in php?
How to check whether a number is prime or not?