gmp_divexact
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_divexact — 正確な除算
説明
高速な "exact division" アルゴリズムを使用して
num1
を num2
で割ります。
この関数は、num1
が num2
で割り切れることがわかっている場合にのみ正確な結果を出力します。
パラメータ
戻り値
GMP オブジェクトを返します。
例
例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
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google