Tests if a bit is set

gmp_testbit

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

gmp_testbitTests if a bit is set

說明

gmp_testbit(GMP|int|string $num, int $index): bool

Tests if the specified bit is set.

參數

num

GMP 對像或 int ,或數字string

index

The bit to test

返回值

Returns true if the bit is set in num, otherwise false.

錯誤/異常

An E_WARNING level error is issued when index is less than zero, and false is returned.

範例

示例 #1 gmp_testbit() example

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

以上例程會輸出:

bool(false)
bool(true)

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *