如何在php中实现二进制无符号右移?


在Java中二进制可以使用>>>进行无符号右移,但是在php中这样使用就会报错,如何在php中实现无符号右移呢?

编码 php

萌之上即为荡 11 years, 8 months ago

php中的右移位运算符是>>,两个大于号,不是三个。

幻or面orQ answered 11 years, 8 months ago

Your Answer