PHP 8.4.2 Released!

bcdiv

(PHP 4, PHP 5, PHP 7, PHP 8)

bcdiv两个任意精度的数字除法计算

说明

bcdiv(string $num1, string $num2, ?int $scale = null): string

num1 除以 num2

参数

num1

被除数,字符串类型。

num2

除数,字符串类型。

scale
此参数用于设置结果中的小数位数。如果为 null,则使用 bcscale() 设置的默认小数位数,或者回退到 bcmath.scale INI 指令的值。

返回值

返回字符串类型的除法结果。

错误/异常

此函数在下列情况下抛出 ValueError

  • num1num2 不是格式正确的 BCMath 数字字符串。
  • scale 超出有效范围。

如果 num20,此函数会抛出 DivisionByZeroError 异常。

更新日志

版本 说明
8.0.0 现在 scale 可以为 null。
8.0.0 现在,除以 0 会引发 DivisionByZeroError 异常,而不是返回 null

示例

示例 #1 bcdiv() 示例

<?php

echo bcdiv('105', '6.55957', 3); // 16.007

?>

参见

  • bcdivmod() - Get the quotient and modulus of an arbitrary precision number
  • bcmod() - 任意精度数字取模
  • bcmul() - 两个任意精度数字乘法计算

添加备注

用户贡献的备注 1 note

up
0
MM
16 years ago
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;
To Top