All pastes #2091456 Raw Edit

Anonymous

public text v1 · immutable
#2091456 ·published 2011-10-19 15:09 UTC
rendered paste body
$ cat test.php 
<?PHP 
$foo = "bar";
$var = "foo";
echo $var . "\n";
echo $$var . "\n";
?>

$ php5 test.php 
foo
bar