gmp_clrbit
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_clrbit — ビットをクリアする
戻り値
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() を使用して取得したもの) を使用してコールしなければなりません。 リソースは自動的には作成されません。
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google