当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。