What is the difference between === and == in PHP?
Posted
by Piyush
on Stack Overflow
See other posts from Stack Overflow
or by Piyush
Published on 2010-05-17T07:51:35Z
Indexed on
2010/05/17
8:00 UTC
Read the original article
Hit count: 140
php
I've seen some code that looks like this:
if($mypassword === '')
How does this differ from ==
?
© Stack Overflow or respective owner