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


PHP bcpowmod()用法及代碼示例


PHP中的bcpowmod()函數是一個內置函數,用於將任意精度的基數提高到另一個按指定模數減少的指數。此函數接受三個任意精度的數字作為字符串,並在將結果縮放到指定的精度後返回以數字為底的指數模的基數。

用法:

string bcpowmod ( $base, $exponent, $mod, $scaleVal )

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


  • $base:此參數為字符串類型,表示左操作數或數字(即增加冪的基礎)。此參數是必需的。
  • $exponent:此參數是字符串類型,代表右操作數或代表指數的數字之一。此參數是必需的。
  • $mod:此參數為字符串類型,並且接受表示模數的操作數或數字。此參數是必需的。
  • $scaleVal:此參數為int類型,是可選的。該參數表示(base)結果中小數點後出現的位數exponent)%mod。默認值為零。

返回值:此函數返回($base$exponent)%$mod結果作為字符串。

例子:

Input:  $base = 2, $exponent = 3 $mod = 3
Output: 2
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, $mod = 3, $scaleVal = 2
Output: 2.00

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

程序1:

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

輸出:

2

程序2:

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

輸出:

2.0000

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



相關用法


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