PHP·98 questions

What is the difference between == and ===?

Answer
== is loose comparison with type juggling.
'5' == 5 returns true.
=== is strict comparison of value AND type.
'5' === 5 returns false.
It is recommended to use ===.
Was this answer helpful?

More questions in this topic

Related questions from other topics