今天只有我注意到,发现使用===操作符的重要性.您可以在以下示例中看到它:
$var=0; if ($var==false) echo "true"; else echo "false"; //prints true $var=false; if ($var==false) echo "true"; else echo "false"; //prints true $var=0; if ($var===false) echo "true"; else echo "false"; //prints false $var=false; if ($var===false) echo "true"; else echo "false"; //prints true
问题是,有没有什么重要的使用===操作符而不是使用==运算符的情况?
当然只有一个例子:
原文链接:https://www.f2er.com/php/131522.htmlarray_search()
Warning
This function may return Boolean
FALSE
,but may also return a non-Boolean value which evaluates toFALSE
,such as0
or""
. Please read the section on Booleans for more information. Use the===
operator for testing the return value of this function.
基本上,如果您使用任何功能返回成功的值但FALSE失败,您应该使用===检查结果(否则为什么会有一个大的红色警告框?))
更多例子:next()
,current()
或作为strpos()
,stripos()
等提到的字符串功能
即使substr()
虽然没有明确提到:
Returns the extracted part of string or FALSE on failure.