$a >> $b

Bitshift right

This operator shift the bits of the first operand to the right by the number of positions specified in the second operand.

Tags
// Binary representation: 00010100
$a = 20; 

// Binary result: 00000101
$a >> 2; 

 1.0+

null coalescing