作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
刚刚注意到 PHP 中的奇怪逻辑。我使用的版本是 PHP 5.6.18
。
代码示例:
$bet_exists = FALSE;
$unanswered_exists = TRUE;
$answer = $bet_exists OR $unanswered_exists;
if ($bet_exists OR $unanswered_exists)
$result = TRUE;
} else {
$result = FALSE;
}
var_dump($answer);
var_dump($result);
打印结果如下:
boolean false
boolean true
您是否意识到这种行为以及 PHP 决定这样做的原因是什么?
最佳答案
or
和 and
的优先级低于赋值 =
。
因此,$answer = $bet_exists OR $unanswered_exists;
中的赋值在 or
之前处理,因此 的值$unanswered_exists
没有任何影响(在代码的第三行中)。它的执行方式类似于 ($answer = $bet_exists) OR $unanswered_exists;
。
使用 ||
和 &&
代替。就像 $answer = $bet_exists && $unanswered_exists;
一样,它会产生预期的结果。
关于php - 奇怪的 php OR 语句逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38435218/
我是一名优秀的程序员,十分优秀!