(PHP 4, PHP 5, PHP 7, PHP 8)
bcmul — 兩個任意精度數(shù)字乘法計算
$num1
, string $num2
, ?int $scale
= null
): string
num1
乘以 num2
。
num1
字符串類型的左操作數(shù)。
num2
字符串類型的右操作數(shù)。
scale
此可選參數(shù)用于設(shè)置結(jié)果中小數(shù)點后的小數(shù)位數(shù)。也可通過使用
bcscale() 來設(shè)置全局默認的小數(shù)位數(shù),用于所有函數(shù)。如果未設(shè)置,則默認為 0
。
返回字符串類型的結(jié)果。
版本 | 說明 |
---|---|
8.0.0 |
現(xiàn)在 scale 可以為 null。
|
7.3.0 | 現(xiàn)在 bcmul() 可以按想要的小數(shù)點位數(shù)返回數(shù)字。 而之前,返回的數(shù)字會忽略尾隨零(trailing decimal zeroes)。 |
示例 #1 bcmul() 示例
<?php
echo bcmul('1.34747474747', '35', 3); // 47.161
echo bcmul('2', '4'); // 8
?>
注意:
Before PHP 7.3.0 bcmul() may return a result with fewer digits after the decimal point than the
scale
parameter would indicate. This only occurs when the result doesn't require all of the precision allowed by thescale
. For example:示例 #2 bcmul() scale example
<?php
echo bcmul('5', '2', 2); // prints "10", not "10.00"
?>