Convert exponent to integer in PHP

Possible duplicate:
Convert exponential number to decimal in php

Is there a way to convert an exponential number to an integer in PHP using inline functions? Format function?

1.2378147769392E + 14 to 123781477693917

+5
source share
1 answer
number_format(1.2378147769392E+14,0,'','') 

However, to work with large numbers, if you want to maintain accuracy, you should study the BCMath extension

+23
source

All Articles