How does PHP handle something like this:
$blah = "Testing a variable";
$$blah = "test";
What would I access my dynamically declared variable?
echo ${'Testing a variable'};
However, you don't want to do this in practice. It makes for unmaintainable, bug-prone code.