在PHP中使用===而不是==的重要性!

前端之家收集整理的这篇文章主要介绍了在PHP中使用===而不是==的重要性!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
今天只有我注意到,发现使用===操作符的重要性.您可以在以下示例中看到它:
$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

问题是,有没有什么重要的使用===操作符而不是使用==运算符的情况?

当然只有一个例子: array_search()

Warning

This function may return Boolean FALSE,but may also return a non-Boolean value which evaluates to FALSE,such as 0 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.

但是,如果提取的部分是“0”呢?它也评估为FALSE,但它不是错误.

原文链接:https://www.f2er.com/php/131522.html

猜你在找的PHP相关文章