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 / adesh suryan
Create new file and save it as .php extension and execute
this file then You find the answer of this question , copy
below code as:
<?php
$a=5;
echo $b=a.'<br/>';
echo $$b;
?>
output:
1.a
2.5
| Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
What is the difference between php4 and php5?
What are the methods of array in java?
How to check if a string contains a character or word in php?
What is php call function?
How do I get csrf token?
What are the features and advantages of object-oriented programming in php?
How to make a class in php?
What is different between software and app
What is better .net or php?
What is put method in php?
Is php an array?
Describe session in php.
How check field is empty or not in php?
What is difference between static and constant in php?
How to remove duplicate values from array using php?