Forum und email

gmp_divexact

(PHP 4 >= 4.0.4, PHP 5)

gmp_divexact — 正確な除算

説明

resource gmp_divexact ( resource $n , resource $d )

高速な "exact division" アルゴリズムを使用して nd で割ります。 この関数は、nd で割り切れることがわかっている場合にのみ正確な結果を出力します。

パラメータ

n

割られる数。

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

d

a を割る数。

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

返り値

A GMP number resource.

Example#1 gmp_divexact() の例

<?php
$div1 
gmp_divexact("10""2");
echo 
gmp_strval($div1) . "\n";

$div2 gmp_divexact("10""3"); // 間違った結果となります
echo gmp_strval($div2) . "\n";
?>

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

5
2863311534