PHP floor function

floor

(PHP 3, PHP 4, PHP 5)

floor -- Round fractions downDescriptionfloat floor ( float value )

Returns the next lowest integer value by rounding down
value if necessary.
The return value of floor() is still of type
float because the value range of float is
usually bigger than that of integer.

Example 1. floor() example

PHP:
  1. echo floor(4.3);   // 4
  2. echo floor(9.999); // 9
  3. echo floor(-3.14); // -4

See also ceil() and
round().

These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • Reddit
  • Furl
  • NewsVine
  • Simpy
  • Slashdot
  • Spurl
  • StumbleUpon
  • YahooMyWeb
  • TailRank
  • Technorati

Home | PHP Functions | PHP floor function