How to use bcpow() to raise an arbitrary precision number to another in PHP

1 Answer

0 votes
// string bcpow(string $left_operand , string $right_operand [, int $scale = 0 ])

echo bcpow('3.14', '4', 2); 

/*
run: 

97.21  

*/

 



answered Jun 1, 2016 by avibootz
...