PHP为什么此&&不会触发为false?
这是因为如果使用&&,则两个条件都必须为真。如果任何一个条件为假,则整体条件为假。
PHP代码如下-
示例
<!DOCTYPE html><html>
<body>
<?php
$firstCondition= "John";
$secondCondition = "David";
if ($firstCondition == "John" && $secondCondition == "David" && ($firstCondition == "Mike" || $firstCondition == "John")) {
echo "The above condition is true";
} else {
echo "The above condition is not true";
}
?>
</body>
</html>
输出结果
The above condition is true
以上是 PHP为什么此&&不会触发为false? 的全部内容, 来源链接: utcz.com/z/321583.html