Can someone explain to me if I should use bcpow() instead of pow() and why?
I understand that not all installations of php have bcmath enabled. So if I write an open source project, and want to have as few dependencies/requirements as possible, I would rather use pow() in my code.
But what are the downsides to using pow() over bcpow()?
bcpow()
is a function of the BCMath Arbitrary Precision Mathematics library.Quoting the introduction of it's manual :
On the other hand, [**`pow()`**][3] is limited to [floats][4], which have a limited size *(quoting)* :
Generally, you'll work with `pow()` and other float-based functions *(which are probably faster, and are always enabled)* ; but, if you need to handle very big number, you'll have to work with `bcpow()`.