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


PHP bcsqrt()用法及代碼示例


PHP中的bcsqrt()函數是一個內置函數,用於評估任意精度數的平方根。此函數接受任意精度數字作為字符串,並在將結果縮放到指定精度後返回數字的平方根。

用法:

string bcsqrt ( $num_str, $scaleVal)

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


  • $num_str:此參數為字符串類型,表示要求平方根的操作數或數字。此參數是必需的。
  • $scaleVal:此參數為int類型,是可選的。此參數告訴結果中小數點後出現的位數。默認值為零。

返回值:此函數以字符串形式返回數字$num_str的平方根。

例子:

Input:  $num_str = 26
Output: 5
Since the parameter $scaleVal is not specified so
no digits after decimal is appeared in the 
result after finding out square root. 

Input:  $num_str = 26, $scaleVal = 4
Output: 5.0990

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

程序1:

<?php 
// PHP program to illustrate bcsqrt() function 
   
// input numbers with arbitrary precision 
$num_str = "26"; 
   
// calculates the square root when  
// $scaleVal is not specified 
$res = bcsqrt($num_str); 
  
echo $res; 
   
?>

輸出:

5

程序2:

<?php 
// PHP program to illustrate bcsqrt() function 
   
// input numbers with arbitrary precision 
$num_str = "26"; 
$scale = "4"; 
   
// calculates the square root when  
// $scaleVal is specified 
$res = bcsqrt($num_str, $scale); 
  
echo $res; 
   
?>

輸出:

5.0990

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



相關用法


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