(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
?>