説明
GMP gmp_and(GMPintstring $num1
, GMPintstring $num2
)
パラメータ
-
num1
-
GMP オブジェクト、整数、あるいは数値に変換可能な数値形式の文字列。
-
num2
-
GMP オブジェクト、整数、あるいは数値に変換可能な数値形式の文字列。
戻り値
ビット AND
演算の結果を GMP 数で返します。
例
例1 gmp_and の例
<?php
$and1 = gmp_and("0xfffffffff4", "0x4");
$and2 = gmp_and("0xfffffffff4", "0x8");
echo gmp_strval($and1) . "\n";
echo gmp_strval($and2) . "\n";
?>