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


PHP bcdiv()用法及代碼示例


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

用法:

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

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


  • $num_str1:此參數為字符串類型,表示被除數。此參數是必需的。
  • $num_str2:此參數為字符串類型,表示除數。此參數是必需的。
  • $scaleVal:此參數為int類型,是可選的。此參數指示除法結果中小數點後出現的位數。默認值為零。

返回值:此函數以字符串形式返回數字$num_str1除以$num_str2。

例子:

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

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

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

程序1:

<?php 
// PHP program to illustrate bcdiv() function 
   
// input numbers 
$num_str1 = "11.222";  // dividend 
$num_str2 = "3";  // divisor 
   
// calculates the division of 
// the two numbers when $scaleVal is 
// not specified 
$res = bcdiv($num_str1, $num_str2); 
  
echo $res; 
   
?>

輸出:

3

程序2:

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

輸出:

3.7406

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



相關用法


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