标签: php bitwise-operators
PHP。有人可以解释一下
| =
表示以下代码行?
$mark = true; $options = FT_UID; if(!$mark) { $options |= FT_PEEK; }
我读过|是一个按位运算,它对位进行操作,但我仍然没有得到它..
答案 0 :(得分:0)
读为“OR等于”。因此,它使用右值的左值并分配给左值。
$a = 0; .. $a |= $b
与
$a = $a | $b