source <?php //$aの値は"hello" //$aaは$helloと同じでその値は"world" $a = "hello"; $$a = "world"; echo $a,"\n",$$a; echo "<br>"; echo $a,"\n",$hello; ?>