Forum und email

gmp_testbit

(No version information available, might be only in CVS)

gmp_testbit — ビットが設定されているかどうかを調べる

説明

bool gmp_testbit ( resource $a , int $index )

指定したビットが設定されているかどうかを調べます。

パラメータ

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

調べたいビット。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

エラー / 例外

index に負の数を指定すると E_WARNING が発生します。

Example#1 gmp_testbit() の例

<?php
$n 
gmp_init("1000000");
var_dump(gmp_testbit($n1));
gmp_setbit($n1);
var_dump(gmp_testbit($n1));
?>

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

bool(false)
bool(true)