PHP Manual
define
Description
bool define ( string name, mixed value [, bool case_insensitive] )Defines a named constant at runtime.
Parameters
nameThe name of the constant.
valueThe value of the constant; only scalar and null values are allowed. Scalar values are integer, float, string or boolean values.
case_insensitiveIf set to TRUE, the constant will be defined case-insensitive. The default behaviour is case-sensitive; i.e. CONSTANT and Constant represent different values.






