Convert exponential to a whole number in PHP [duplicate]

number_format(1.2378147769392E+14,0,'','')

However, for working with large numbers, if you want to keep precision, you should look into BCMath extension

Leave a Comment