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
number_format(1.2378147769392E+14,0,'','')
However, to work with large numbers, if you want to maintain accuracy, you should study the BCMath extension