Possible Duplicate:
Convert exponential number to decimal in php

Is there a way to convert an exponential number to a whole number in PHP using built in functions? A format function?

1.2378147769392E+14 to 123781477693917

link|improve this question

75% accept rate
Possible duplicate of #4461444 – jnpcl Feb 10 '11 at 23:48
What do you mean by "convert"? That are both the exact same number, so no conversion will occur in any case. – KingCrunch Feb 10 '11 at 23:48
what i get is a string with the exponential format, i would like the value returned to be a decimal format – Dhana Feb 10 '11 at 23:49
feedback

closed as exact duplicate by Felix Kling, Alister Bulman, Maerlyn, Mchl, Graviton Feb 11 '11 at 2:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 4 down vote accepted
number_format(1.2378147769392E+14,0,'','')

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

link|improve this answer
Cool- thanks:). Works perfect. – Dhana Feb 10 '11 at 23:55
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.