Can someone explain to me if I should use bcpow () instead of pow () and why?
I understand that not all php installations have bcmath. Therefore, if I am writing an open source project and want to have as few dependencies / requirements as possible, I would prefer to use pow () in my code.
But what are the disadvantages of using pow () over bcpow ()?
source
share