i define a set of constants so that my application is more easily to be configured. i want the name of variables in my application can be changed using a config file:
define ("CONST_USER", "user_id");
but in php program, when i want to refer the variable $user_id, can i write $CONST_USER, or any function can help me?