This question about syntax/syntax capabilities in PHP. Take for example, using variables to store class names when declaring objects:
$className= \'myClass\'; $
As class name (e.g. MyClass) can not be distinguished from constant name MyClass - your approach will not work.
MyClass