(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_and — 按位与
num1
一个GMP对象,一个int,或一个string,可以解释为数字,其逻辑与在gmp_init()中使用字符串并自动检测基数(即base
等于0)时相同。
num2
一个GMP对象,一个int,或一个string,可以解释为数字,其逻辑与在gmp_init()中使用字符串并自动检测基数(即base
等于0)时相同。
表示按位AND
比较的GMP数字。
示例 #1 gmp_and() 例子
<?php
$and1 = gmp_and("0xfffffffff4", "0x4");
$and2 = gmp_and("0xfffffffff4", "0x8");
echo gmp_strval($and1) . "\n";
echo gmp_strval($and2) . "\n";
?>
以上示例将输出
4 0