Code: Select all
if ($one == $two) three();
but what I dont understand is
Code: Select all
if ($one === $two) three();
What is the third equal sign do? I tried searching in php.net but didn't find it.
Moderators: egami, macek, gesf
Code: Select all
if ($one == $two) three();
Code: Select all
if ($one === $two) three();