+ 2
variables are case sensitive what about constants?
3 Antworten
+ 2
constant are also case sensitive you can make them case insensitive just by writing code as below
define("xyz", 24, false);
so that you can use xyz or XYZ by default the value is true...
+ 1
constants are also case sensitive by default, but you can make them case insensitive.
+ 1
constants are default case sensitive. but you can change this by passing "true" in define ()