[PHP-DEV] Bug #483: Variable variables are not resolved within quoted strings - worked with PHP 2.0 From: khapeman <email protected>
Date: 06/26/98

From: khapeman <email protected>
Operating system: Solaris 2.5 and 2.6
PHP version: 3.0 Final Release
PHP Bug Type: Misbehaving function
Bug description:
hudson{root}199: more junk
<?
$a = "hello";
$$a = "again";
echo $a, "\n";
echo $hello, "\n";
echo $$a, "\n";
echo "$a $$a\n";
?>

Here's the result:

hudson{root}200: php junk
Content-type: text/html

hello
again
again
hello $hello
hudson{root}201: