當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP bcmul()用法及代碼示例


PHP中的bcmul()函數是一個內置函數,用於將兩個任意精度數字相乘。此函數接受兩個任意精度的數字作為字符串,並在將結果縮放到指定的精度後返回兩個數字的乘法。

用法:

string bcmul ( $num_str1, $num_str2, $scaleVal)

參數:此函數接受上述語法中所示的三個參數,並在下麵進行說明:


  • $num_str1:此參數為字符串類型,表示左側操作數或我們要執行乘法運算的兩個數字之一。此參數是必需的。
  • $num_str2:此參數為字符串類型,表示正確的操作數或我們要執行乘法運算的兩個數字之一。此參數是必需的。
  • $scaleVal:此參數為int類型,是可選的。此參數告訴乘法結果中小數點後出現的位數。默認值為零。

返回值:此函數以字符串形式返回兩個數字$num_str1和$num_str2的乘法。

例子:

Input:  $num_str1 = 3, $num_str2 = 11.222
Output: 33
Explanation: Since the parameter $scaleVal is not 
specified so no digits after decimal is appeared 
in the result after multiplication.

Input:  $num_str1 = 3, $num_str2 = 11.222, $scaleVal = 4
Output: 36.6660

以下示例程序旨在說明PHP中的bcmul()函數:

程序1:

<?php 
// PHP program to illustrate bcmul() function 
   
// input numbers with arbitrary precision 
$num_str1 = "3"; 
$num_str2 = "11.222"; 
   
// calculates the multiplication of the two 
// numbers when $scaleVal is not specified 
$res = bcmul($num_str1, $num_str2); 
  
echo $res; 
   
?>

輸出:

33

程序2:

<?php 
// PHP program to illustrate bcmul() function 
   
// input numbers with arbitrary precision 
$num_str1 = "3"; 
$num_str2 = "11.222"; 
  
// scale value 
$scaleVal = 3; 
   
// calculates the multiplication of the two 
// numbers when $scaleVal is specified 
$res = bcmul($num_str1, $num_str2, $scaleVal); 
  
echo $res; 
   
?>

輸出:

33.666

參考:
http://php.net/manual/en/function.bcmul.php



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | bcmul() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。