Web aym.pekori.to

bcmul

(PHP 3, PHP 4, PHP 5)

bcmul -- 2つの任意精度数値による乗算

説明

string bcmul ( string left_operand, string right_operand [, int scale] )

left operandright operand を掛け算して、その結果を返します。 オプションの scale パラメータは、結果における 小数点以下の桁数を指定するために使用します。

例 1. bcmul() の例

<?php
echo bcmul('1.34747474747', '35', 3); // 47.162
echo bcmul('2', '4'); // 8
?>

参考

bcdiv()