gmp_clrbit

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

gmp_clrbit清除位

描述

gmp_clrbit(GMP $num, int $index): void

清除(设置为 0)num 中的位 index。索引从 0 开始。

参数

num

一个 GMP 对象。

index

要清除的位的索引。索引 0 表示最低有效位。

返回值

一个 GMP 对象。

示例

示例 #1 gmp_clrbit() 示例

<?php
$a
= gmp_init("0xff");
gmp_clrbit($a, 0); // 索引从 0 开始,最低有效位
echo gmp_strval($a) . "\n";
?>

上面的示例将输出

254

注释

注意:

与大多数其他 GMP 函数不同,gmp_clrbit() 必须调用已经存在的 GMP 对象(例如使用 gmp_init())。不会自动创建。

参见

添加注释

用户贡献的注释

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