Font-size: A A A
Bitwise AND.
This is the bitwise AND operator.
<?php $a = 11; $b = 7; printf("%b & %b = %b", $a, $b, $a & $b); ?>
1011 & 111 = 11
The bitwise AND operator is used on the numbers 5 and 7.