May I know how can I do PHP >>> ? Such operators is not available in PHP, but is available in Javascript.
I just managed to discover a function as follow:
This works for me
function RRR($a, $b){ return (int)((float)$a/pow(2,(int)$b)); }