bcmul
    (PHP 3, PHP 4, PHP 5)
bcmul -- 2つの任意精度数値による乗算
説明
string 
bcmul ( string left_operand, string right_operand [, int scale] )
    left operand と right operand
     を掛け算して、その結果を返します。
    オプションの scale パラメータは、結果における
    小数点以下の桁数を指定するために使用します
    (指定した桁数以下は切り捨てられます)。
    
例
例 1. bcmul() の例 
<?php echo bcmul('1.34747474747', '35', 3); // 47.161 echo bcmul('2', '4'); // 8 ?>
 |  
  |