📜  PHP | bcpow()函数

📅  最后修改于: 2022-05-13 01:56:28.486000             🧑  作者: Mango

PHP | bcpow()函数

PHP中的 bcpow()函数是一个内置函数,用于计算任意精度基数的值,该基数提升到另一个指数。此函数接受两个任意精度数字作为字符串,并在将结果缩放到指定精度后返回基数提升为指数。

句法:

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

参数:此函数接受三个参数,如上述语法所示并解释如下:

  • $base :此参数为字符串类型,表示将提高功率的基数。此参数是必需的。
  • $exponent :该参数为字符串类型,代表指数。此参数是必需的。
  • $scaleVal :该参数是 int 类型,是可选的。此参数告诉在基指数的结果中将出现在小数点后的位数。它的默认值为零。

返回值:此函数将 $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()函数:

方案一:


输出:

2

方案二:


输出:

2

参考:
http:// PHP.net/manual/en/函数.bcpow。 PHP