You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
202 B

  1. <?php
  2. //可变变量,有点像c语言里得宏
  3. $a='hallo';
  4. echo $a.'<br>';
  5. $$a='world'; //=>${$a}='world' =>($a='hallo')=> $hallo='world'
  6. echo $$a.'<br>';
  7. echo ${$a}.'<br>';
  8. ?>