floor

(PHP 4, PHP 5)

floorОкругляет дробь в меньшую сторону

Описание

float floor ( float $value )

Возврашает ближайшее целое число, округляя value в меньшую сторону.

Список параметров

value

Числовое значение для округления

Возвращаемые значения

Значение value, округленное в меньшую сторону до ближайшего целого числа. Возвращаемое значение функции floor() по прежнему типа float потому что диапазон значений float обычно больше, чем у integer.

Примеры

Пример #1 Пример использования floor()

<?php
echo floor(4.3);   // 4
echo floor(9.999); // 9
echo floor(-3.14); // -4
?>

Смотрите также

  • ceil() - Округляет дробь в большую сторону
  • round() - Округляет число типа float

Коментарии

Beware of FLOAT weirdness!

Floats have a mind of their own, and what may look like an integer stored in a float isn't.

Here's a baffling example of how floor can be tripped up by this:

<?php
$price 
79.99;

print 
$price."\r\n";     // correct result, 79.99 shown

$price $price 100;

print 
$price."\r\n";    // correct result, 7999 shown

print floor($price);    // 7998 shown! what's going on?
?>

The thing to remember here is that the way a float stores a value makes it very easy for these kind of things to happen. When the 79.99 was multiplied by 100, the actual value stored in the float was probably something like 7998.9999999999999999999999999999999999, PHP would print out 7999 when the value is displayed but floor would therefore round this down to 7998.

THe moral of this story - never use float for anything that needs to be accurate! If you're doing prices for products or a shopping cart, then always use an integer and store prices as a number of pence, you'll thank me for this later :)
2004-08-10 12:41:48
http://php5.kiev.ua/manual/ru/function.floor.html
Note:

<?php
$int 
0.99999999999999999;
echo 
floor($int); // returns 1
?>

and

<?php
$int 
0.9999999999999999;
echo 
floor($int); // returns 0
?>
2008-03-25 14:01:12
http://php5.kiev.ua/manual/ru/function.floor.html
Автор:
<?php
echo (2.3 100) . ' - ' round(2.3 1000) .  ' - ' floor(2.3 100);
?>.

Result:
230 - 230 - 229

Be careful!
2019-10-24 15:14:03
http://php5.kiev.ua/manual/ru/function.floor.html

    Поддержать сайт на родительском проекте КГБ