Forum und email

gmp_pow

(PHP 4 >= 4.0.4, PHP 5)

gmp_pow — べき乗を計算する

説明

resource gmp_pow ( resource $base , int $exp )

baseexp 乗を計算します。

パラメータ

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 を何乗するかを指定します。

返り値

べき乗の結果を GMP 数で返します。 0^0 は 1 となります。

Example#1 gmp_pow() の例

<?php
$pow1 
gmp_pow("2"31);
echo 
gmp_strval($pow1) . "\n";
$pow2 gmp_pow("0"0);
echo 
gmp_strval($pow2) . "\n";
$pow3 gmp_pow("2", -1); // 負のべき乗を指定したため、警告を発生します
echo gmp_strval($pow3) . "\n";
?>

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

2147483648
1