$a << $b Bitshift left This operator shift the bits of the first operand to the left by the number of positions specified in the second operand. Tags << Related $a <<= $b $a >> $b // Binary representation of 5: 00000101 $a = 5; // Binary result: 00010100 $a 1.0+