PHP/Math/ceil — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 10:37, 26 мая 2010

float ceil ( float num ) rounds parameter to the nearest integer above its current value

 
<?
    $number = ceil(11.9); // 12
    $number = ceil(11.1); // 12
    $number = ceil(11); // 11
?>