0
What is the value of $x=4;$y=8;$x="y";echo $x;
dynamic variables
2 Réponses
+ 1
It will print the value of variable $y i.e. 8
+ 1
This method is know as Variable Variables
Here as variable $x holds the address of other variable $y and variable y has an integer value 8. this will print 8