I'm trying to do an echo of a variable containing 1400000. so there is written: echo round(1400000); this gives 1,4E+6 instead of the full number. Anybody an idea on how to display it fully?
|
feedback
|
|
Related to your question, I also came across this comment on the PHP website.
It seems there has not been a "real" fix yet, but judging from the comments in the bug report Paul Dixon referered to earlier, his solution seems to work. | |||
|
feedback
|
|
Possibly related to this bug report, so you could try
| |||
|
feedback
|
|
great work, thx for the answer. It seems that round was the pain in the ass. I changed it with number_format() and this does the job just fine. Thx Aron and Paul for the answers | |||||||||
feedback
|