PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How do I round down a number?


If you round up your numbers with ceil, then what do you do to round them down?

One method is to think of ceil(ing) and what's the opposite of ceiling? That's right, floor!

<?php
$mynumber 
12.7;
$lower floor($mynumber);
echo 
"Number is now $lower";//number is now 12
?>



Comment on this Question and Answer >>>

ASK A QUESTION

More numbers PHP Questions

How do I force a value to be treated as a number?

How do I work out the remainder of a division?

How do I round up a number?

How do I generate a random number?

How do I format a number with commas like a monetary value?



Custom Search