Forum und email

gmp_clrbit

(PHP 4 >= 4.0.4, PHP 5)

gmp_clrbit — ビットをクリアする

説明

void gmp_clrbit ( resource &$a , int $index )

a のビット index をクリア (0 に設定) します。index は 0 から始まります。

パラメータ

a

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

index

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

返り値

A GMP number resource.

Example#1 gmp_clrbit() の例

<?php
$a 
gmp_init("0xff");
gmp_clrbit($a0); // インデックスは 0 から始まり、これは最下位ビットを表します
echo gmp_strval($a) . "\n";
?>

上の例の出力は以下となります。

254

注意

注意: 他の大半の GMP 関数とは異なり、gmp_clrbit() は必ず既存の GMP リソース (例えば gmp_init() を使用して取得したもの) を使用してコールしなければなりません。 リソースは自動的には作成されません。