PHP/Math/ceil — различия между версиями
Admin (обсуждение | вклад) м (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
?>