I have been programming in PHP for a while but I still dont understand the difference between == and ===. I know that = is assignment. And == is equals to. So what is the pu
It's a true equality comparison.
"" == False for instance is true.
"" == False
true
"" === False is false
"" === False
false