How to round a float 92,2345 to int 92 ?
| SitePoint Sponsor |
How to round a float 92,2345 to int 92 ?


Did you try http://us3.php.net/round ?
There's also
http://us3.php.net/manual/en/function.ceil.php
- and -
http://us3.php.net/manual/en/function.floor.php
However that does not handle strings such as "92,123" but does do 92.123
Fesh
imagine what it's going to be like
Looks like both functions do the same work.
Is there any difference?




Yes. Ceil() will round a fraction up no matter what it is. For example, 92.1000Originally Posted by REMIYA
will always round up to 93.
Floor() will always round down. So, 92.9999 will always round down to 92.
Thank you very much.Originally Posted by krayziepjf
Bookmarks