<?php $v1 = 10;echo $v1; //10$str = "v1";echo $$str; //输出10。 这里, "$$str"就是可变变量?><?php $a = 10;$b = 'a';$c = 'b';echo $$$c; //结果为10 ,相当于$$b ,相当于$a?>