php数组函数 bcpow(),支持版本:PHP 4, PHP 5, PHP 7, PHP 8,定义和用法:bcpow(string $num, string $exponent, int|null $scale = null): string,num 的 exponent 次方运算。参数解释:num:string 类型的底数。exponent:string 类型的指数。 如果指数不是整数,将被截断。 指数的有效范围取决于平台,但起码支持 -2147483648 到 2147483647 的范围。scale:此可选参数用于设置结果中小数点后的小数位数。也可通过使用 bcscale() 来设置全局默认的小数位数,用于所有函数。如果未设置,则默认为 0。 |