Home  >  Article  >  Backend Development  >  位操作符_PHP

位操作符_PHP

WBOY
WBOYOriginal
2016-06-01 12:39:54865browse

位操作符允许您精细的操作数据的每一个位。

Table 7-2. Bitwise Operators(表7-2位操作符)

example name result
$a & $b And Bits that are set in both $a and $b are set.?/FONT>
$a | $b Or Bits that are set in either $a or $b are set.?/FONT>
~ $a?/FONT> Not Bits that are set in $a are not set, and vice versa.






Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn