php define("AND", "AND") syntax error -


i want pre-declare "and" , "or", use define

define("and", "and") ;  define("or", "or") ; 

but , and or throw syntax error, unexpected 'and', syntax error, unexpected 'or'

you cannot use reserved words or keywords names of constants, class names, or function names. should not use them variable names.


Comments