I have a PHP site which uses language system based on \"define\" method. For example:
define(\"_question_1\", \"How old are you?\"); define(\"_quest
Try constant() it returns the value of a constant, for example:
var_dump(constant('YourConstantNameHere'));
or with variables
var_dump(constant($a));
http://www.php.net/manual/en/function.constant.php