(PHP 4, PHP 5, PHP 7, PHP 8)
bcdiv — 两个任意精度的数字除法计算
num1被除数,字符串类型。
num2除数,字符串类型。
scalenull ,则默认为使用 bcscale() 设置的默认精度,
或者回退到 bcmath.scale INI 指令的值。
返回字符串类型的除法结果。
此函数在下列情况下抛出 ValueError :
num1 或 num2 不是格式正确的 BCMath 数字字符串。
scale 超出有效范围。
如果 num2 为 0,此函数会抛出 DivisionByZeroError 异常。
| 版本 | 说明 |
|---|---|
| 8.0.0 |
现在 scale 可以为 null。
|
| 8.0.0 |
现在,除以 0 会引发 DivisionByZeroError 异常,而不是返回 null 。
|
示例 #1 bcdiv() 示例
<?php
echo bcdiv('105', '6.55957', 3); // 16.007
?>
Perhaps some one can find useful this function to compute the modular inverse of a integer (extended euclidean algorithm):
function invmod($a,$b) {
$n=$b;
$x=0; $lx=1; $y=1; $ly=0;
while ($b) {
$t=$b;
$q=bcdiv($a,$b,0);
$b=bcmod($a,$b);
$a=$t;
$t=$x; $x=bcsub($lx,bcmod(bcmul($q,$x),$n)); $lx=$t;
$t=$y; $y=bcsub($ly,bcmod(bcmul($q,$y),$n)); $ly=$t;
}
if (bccomp($lx,0) == -1)
$lx=bcadd($lx,$n);
return $lx;
}
// verify
$n="2447995268898324993537772139997802321";
$t="64941057316178801556773346239351236811";
$m="123456789";
$i=invmod($t,$n);
// (t*m)*inv(t) is m
echo bcmod(bcmul(bcmod(bcmul($t,$m),$n),$i),$n) == $m;