令人困惑的PHP按位NOT行为

时间:2013-09-12 02:07:48

标签: php bit-manipulation

在PHP中,如果我运行以下简单程序

$number = 9;
var_dump( ~ $number );

我的输出是

int(-10)

这让我感到困惑。我以为 ~是按位NOT运算符。所以我期待着类似的东西。

if binary 9 is     00000000000000000000000000001001 
then Bitwise NOT 9 11111111111111111111111111110110

含义~9应该像4,294,967,286这样一些可笑的大整数。

我在这里缺少什么巧妙的优先权,类型强制或其他什么?

1 个答案:

答案 0 :(得分:3)

您的输出默认为signed int - 将其包装在decbin中以获取二进制表示。

考虑:

$number = 9;
var_dump(  bindec(decbin(~ $number)) );

使用two's compliment,带符号二进制数的MSB变为0-MSB,但每隔一位保留其各自的正值。

所以为了论证(一个8位的例子),

Binary 9: 0000 1001
Inverse:  1111 0110

这导致(-128) + 64 + 32 + 16 + 4 + 2 = -10,因此PHP正确计算,它只是对MSB应用了两个赞美。