I would like to be able to do something like this:
class ThingIDs { const Something = 1; const AnotherThing = 2; } $thing = \'Something\'; $id = Thi
getConstants(); return isset($enum[$symbol])?$enum[$symbol]:false; } // print 'howdy' echo symbol_to_value('TEST', 'Dude');