I just wondering in PHP i have seen people use both these cases..
if($var===TRUE)
if($var===true)
just wondering of there is a actual difference in them or a coding standard/format to be used in boolean value ?
|
I just wondering in PHP i have seen people use both these cases..
just wondering of there is a actual difference in them or a coding standard/format to be used in boolean value ? |
|||||
|
|
There's no difference at all. From the docs:
According to PSR-2, as stated by both Laxus and Paul Bain in their comments, the standard is to write them in lower case. |
||||
|
|
|
lowercase is generally considered a good practice, see the coloration of the lowercase on stackoverflow :) And not related, but you should always use true first in the condition (true === $var), this is a good practice to avoid sneaky bugs when mistyping the condition, eg : $var = true |
|||
|
|