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


PHP bcpow()用法及代碼示例


PHP中的bcpow()函數是一個內置函數,用於計算升至另一個指數的任意精度基數的值。此函數接受兩個任意精度數字作為字符串,並在將結果縮放到指定精度後返回加到指數的基數。

用法:

string bcpow ( $base, $exponent, $scaleVal )

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


  • $base:此參數為字符串類型,表示將增加功率的基礎。此參數是必需的。
  • $exponent:此參數為字符串類型,表示指數。此參數是必需的。
  • $scaleVal:此參數為int類型,是可選的。此參數告訴在基數結果中小數點後出現的位數exponent。默認值為零。

返回值:此函數返回$base$exponent結果為字符串。

例子:

Input:  $base = 2, $exponent = 3 
Output: 8
Since the parameter $scaleVal is not specified so
no digits after decimal is appeared in the 
result after evaluating result

Input:  $base = 2, $exponent = 3, $scaleVal = 2
Output: 8
Note: Instead of 8.00, output of 8 is given. 
This is an exception in bc math functions.

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

程序1:

<?php 
// PHP program to illustrate bcpow() function 
   
// input numbers with arbitrary precision 
$base = "2"; 
$exponent = "3";  
   
// calculates the base^exponent 
// the two numbers when $scaleVal is 
// not specified 
$res = bcpow($base, $exponent); 
  
echo $res; 
   
?>

輸出:

2

程序2:

<?php 
// PHP program to illustrate bcpow() function 
   
// input numbers with arbitrary precision 
$base = "2"; 
$exponent = "3"; 
  
// scale value 
$scaleVal = 4; 
  
// calculates the base^exponent 
// the two numbers when $scaleVal is 
// specified  
$res = bcpow($base, $exponent, $scaleVal);  
  
echo $res; 
?>

輸出:

2

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



相關用法


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