How can I get PHP to evaluate a static variable in double quotes?
I want to do something like this:
log("self::$CLASS $METHOD entering");
Yes this can be done:
log("{${self::$CLASS}} $METHOD entering");