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


PHP bcsub()用法及代碼示例


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

用法:

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

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


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

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

例子:

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

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

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

程序1:

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

輸出:

8

程序2:

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

輸出:

8.2220

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



相關用法


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