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
Tell me what is the main difference between require() and require_once()?
What does php exit do?
What is difference between require_once(), require(), include()?
Explain the difference between array_merge() and array_combine()?
what is the use of include_once in php?
How do you put a space in html?
What is final class and final method in php?
What is the role of the .htaccess file in php?
What is a php object?
How many types of errors in php?
How do functions work?
Tell me how to set a page as a home page in a php based site?
What are the encryption techniques in php?
Do you know what is use of count() function in php?
How to list all values of submitted fields?