Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bitwise operators perform operations on the binary representation of numbers.
| Description | |
|---|---|
$bitAnd |
The $bitAnd operator performs a bitwise AND operation on integer values and returns the result as an integer. |
$bitNot |
The $bitNot operator performs a bitwise NOT operation on integer values and returns the result as an integer. |
$bitOr |
The $bitOr operator performs a bitwise OR operation on integer values and returns the result as an integer. |
$bitXor |
The $bitXor operator performs a bitwise XOR operation on integer values. |