variables are case sensitive what about constants? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

variables are case sensitive what about constants?

26th Jul 2016, 7:41 PM
Moses
3 Answers
+ 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...
27th Jul 2016, 12:10 AM
abhijit kumbhar
abhijit kumbhar - avatar
+ 1
constants are also case sensitive by default, but you can make them case insensitive.
26th Jul 2016, 7:43 PM
Moses
+ 1
constants are default case sensitive. but you can change this by passing "true" in define ()
21st Dec 2016, 8:17 PM
Vyom Srivastava
Vyom Srivastava - avatar