Is this a php variable variable bug?

Viewed 449

Is there a logical explanation to this?

<?php  
$$a = 'hello world';  
echo $$a; //displays hello world  
echo $$aa; //displays hello world  
echo $$aaa; //displays hello world  
?>
5 Answers
Related