개발관련/PHP
[PHP]Variable Variables
파노카페
2012. 4. 20. 15:46
helloVariable Variables "; echo $hello."
"; echo $$a."
"; // What does $$var[1] mean? // #1: get the first element then evaluate dynamically? // #2: evaluate dynamically then get the first element? // Use {} to make it clear: // echo ${$var[1]}; // for #1 // echo ${$var}[1]; // for #2 ?>
Hello everyone.
Hello everyone.