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
Why is php used for web development?
What is string in php?
What is session in php w3schools?
What is the best way to avoid email sent through php getting into the spam folder?
How many open modes available when a file open in PHP?
Explain the types of string comparision function in PHP
Explain the difference between php4 and php5.
Tell me when a conditional statement is ended with an endif?
What are the 5 types of data?
How can you make a connection with mysql server using php?
How do I run a php file?
Write a program to display reverse of any number?
What are the different ways to login to a remote server? Explain the me, advantages and disadvantages?
What is $_ files in php?
Tell us what does $_cookie means?