Font-size: A A A
Shift left.
This operator shifts a binary number a number of steps to the left.
<?php $a = 11; $b = $a << 1; printf("%b << 1 = %b", $a, $b); ?>
1011 << 1 = 10110
A number is shifted one step to the left.