I'm wondering, in PHP, I've seen people use both these cases:
if($var === TRUE)
if($var === true)
is there an actual difference between them or a coding standard/format to be used in boolean value?
I'm wondering, in PHP, I've seen people use both these cases:
if($var === TRUE)
if($var === true)
is there an actual difference between them or a coding standard/format to be used in boolean value?