Consider the following:
$text1 = 'Hello World!';
$text2 = 'text1';
echo ${$text2};
Ok, so this will output Hello World!
But I have to admit, it has me scratching my head. From a practicality standpoint, is there a good use for this? (not from the standpoint of what values these particular variables hold, but rather the concept / idea behind it all).
Any good examples of where this notation would come in handy?