php - TRUE or true difference?

Viewed 12662

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?

2 Answers
Related