Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从这个逻辑操作中返回一个整数值而不是“bool”:
$x =7581749795038 ; $y = 0x0000FFFFFFFFFFFF; echo $x . "<hr>"; echo $x and $y;
输出为 1。
我需要返回这两个变量并返回一个像 01011010010 这样的值。
你&不想and
&
and
PHP 位运算符
您需要跟进decbin()将整数转换为二进制表示。
decbin()
echo decbin( $x & $y );