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


PHP bcadd()用法及代碼示例


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

用法:

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

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


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

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

例子:

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

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

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

程序1:

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

輸出:

14

程序2:

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

輸出:

14.2220

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



相關用法


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