变量变量

Avatar of Chris Coyier
Chris Coyier
<?php

  $var1 = 'nameOfVariable';

  $nameOfVariable = 'This is the value I want!';

  echo $$var1; 

?>