gmp_div_qr
(PHP 4 >= 4.0.4, PHP 5)
gmp_div_qr — 除算を行い、商と余りを得る
説明
array gmp_div_qr
( resource $n
, resource $d
[, int $round
] )
この関数は、n を d で割ります。
パラメータ
- 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
-
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.
- round
-
引数 round の説明については、 gmp_div_q() 関数を参照ください。
返り値
配列を返します。配列の最初の要素は [n/d] (割算の結果の整数値)、2 番目の要素は (n - [n/d] * d) (割算の余り) です。
例
Example#1 GMP 数の割算
<?php
$a = gmp_init("0x41682179fbf5");
$res = gmp_div_qr($a, "0xDEFE75");
printf("Result is: q - %s, r - %s",
gmp_strval($res[0]), gmp_strval($res[1]));
?>