gmp_and

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

gmp_and按位与

描述

gmp_and(GMP|int|string $num1, GMP|int|string $num2): GMP

计算两个 GMP 数的按位与。

参数

num1

一个 GMP 对象、一个 int 或一个数字 string.

num2

一个 GMP 对象、一个 int 或一个数字 string.

返回值

一个 GMP 数字,表示按位 AND 比较的结果。

示例

示例 #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
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top