PHP - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.PHP
Other pieces of example codes:($i & $j)
128 << ($j <<(3 + $i))
2 >> 2
$x = 123 ^ 25
$x = 1 | 2
~($x & 5) & $y
Bitwise operators in another programming language: