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


PHP bccomp()用法及代碼示例


PHP中的bccomp()函數是一個內置函數,用於比較兩個任意精度數字。此函數接受兩個任意精度的數字作為字符串,並在將兩個數字進行比較以達到指定的精度後返回兩個數字的比較結果。

用法:

int bccomp ( $num_str1, $num_str2, $scaleVal)

參數:該函數接受三個參數,如上麵的語法所示,下麵將進行解釋。


  • $num_str1:此參數為字符串類型,代表左側操作數或我們要進行比較的兩個數字之一。此參數是必需的。
  • $num_str2:此參數為字符串類型,表示正確的操作數或我們要進行比較的兩個數字之一。此參數是必需的。
  • $scaleVal:此參數為int類型,是可選的。此參數告訴小數位後將用於比較的位數。此參數的默認值為零。

返回值:該函數基於兩個數字$num_str1和$num_str2的比較返回一個整數值。如果兩個數字相等,則此函數返回零。如果$num_str1大於$num_str2,則此函數返回1;如果$num_str1小於$num_str2,則此函數返回-1。

例子:

Input:  $num_str1 = 3.22, $num_str2 = 3
Output: 0
Explanation: Since the parameter $scaleVal is not 
specified so no digits after decimal is used in 
comparison. So, the value of first parameter which 
is 3.22 will be treated as 3 and hence both 
parameters are equal.

Input:  $num_str1 = 3.222, $num_str2 = 3, $scaleVal = 2
Output: 1

Input:  $num_str1 = 3, $num_str2 = 3.222, $scaleVal = 2
Output: -1

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

程序1:

<?php 
// PHP program to illustrate bccomp() function 
   
// input numbers 
$num_str1 = "3.12";   
$num_str2 = "3";   
  
// calculates the comparison of the two  
// numbers when $scaleVal is not specified 
$res = bccomp($num_str1, $num_str2, 2); 
  
// both parameters are equal 
echo $res; 
   
?>

輸出:

0

程序2:

<?php 
// PHP program to illustrate bccomp() function 
   
// input numbers 
$num_str1 = "3.12";   
$num_str2 = "3";   
  
// scale value 
$scaleVal = 2; 
  
// calculates the comparison of the two  
// numbers when $scaleVal is specified 
$res = bccomp($num_str1, $num_str2, $scaleVal); 
  
// first parameter is greater than second 
echo $res; 
   
?>

輸出:

1

程序3:

<?php 
// PHP program to illustrate bccomp() function 
   
// input numbers 
$num_str1 = "3";   
$num_str2 = "3.12";   
  
// scale value 
$scaleVal = 2; 
  
// calculates the comparison of the two  
// numbers when $scaleVal is specified 
$res = bccomp($num_str1, $num_str2, $scaleVal); 
  
// first parameter is smaller than second 
echo $res; 
   
?>

輸出:

-1

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



相關用法


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