Prevent scientific notation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cheesecaker
    New Member
    • Feb 2007
    • 66

    Prevent scientific notation

    Let's say I want to echo ".00002". PHP likes to echo "2.0E-5" instead. How would I have it print .00002 instead?
  • vituko
    New Member
    • Dec 2006
    • 48

    #2
    Look these functions : number_format or sprintf at php.net, for example

    Comment

    Working...