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