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