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 / rajkumar
<?php
//If the variable $a is equal to 5 and variable $b is equal
to character a, what’s the value of $$b?
$a =5;
$b=$a;
$c= $$b;
print_r($c);
?>
it will not display any answer so answer is wrong
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is the best practice for running mysql queries in php? Consider the risk of sql injection.
What exactly is validating and sanitizing?
Is php an object or array?
Do you know what does mvc stand for and what does each component do?
How do you check if a variable has not been set in php?
How to download files from an external server with code in php?
How do I use isdigit function?
Is runtime polymorphism overriding?
How to replace a substring in a given string?
How to invoke a user function?
Explain Type hinting in PHP?
Does php have a future?
Which is not a file-related function in php?
Which Scripting Engine PHP uses?
Do you know what is use of count() function in php?