Forum und email

gmp_powm

(PHP 4 >= 4.0.4, PHP 5)

gmp_powm — べき乗とモジュロを計算する

説明

resource gmp_powm ( resource $base , resource $exp , resource $mod )

mod を法として (baseexp 乗) を計算します。 exp が負の場合、結果は未定義(undefined) となります。

パラメータ

base

もととなる数。

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

exp

正の数で、base を何乗するかを指定します。

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

mod

モジュロ。

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

返り値

結果を GMP 数で返します。

Example#1 gmp_powm() の例

<?php
$pow1 
gmp_powm("2""31""2147483649");
echo 
gmp_strval($pow1) . "\n";
?>

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

2147483648