Answers for "$_ in php"

PHP
2

$$ in php

$x = "abc";  
$$x = 200;  
echo $x."<br/>";  
echo $$x."<br/>";  
echo $abc; 

// output:
abc
200
200
Posted by: Guest on July-27-2021

Browse Popular Code Answers by Language