Home > Backend Development > PHP Tutorial > 位操作符_PHP

位操作符_PHP

WBOY
Release: 2016-06-01 12:39:54
Original
900 people have browsed it

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

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.






Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template