SommaireTelecharger la documentationChapitre suivantChapitre precedent  

 
Raccourci :  
Mathématiques

Introduction
Constantes mathématiques
abs
acos
asin
atan
atan2
base_convert
bindec
ceil
cos
decbin
dechex
decoct
deg2rad
exp
floor
getrandmax
hexdec
lcg_value
log
log10
max
min
mt_rand
mt_srand
mt_getrandmax
number_format
octdec
pi
pow
rad2deg
rand
round
sin
sqrt
srand
tan

8.14.9 ceil
[Notes en ligne] [Exemples]

Arrondit au nombre supérieur

float ceil (float number)
ceil() retourne l'entier supérieur du nombre number. Utiliser ceil() sur un entier ne sert à rien. La valeur retournée est un nombre à virgule flottante (float), car ces nombres peuvent être plus grands que les entiers.

<?php
  $x = ceil(4.25);
//  ce qui donne $x=5
?>
     


NOTE: ceil() sous PHP/FI 2 retournait un nombre à virgule flottante. Utilisez: $new = (float)ceil($number); pour retrouver le comportement traditionnel.
Voir aussi floor() et round().


Chapitre précédentChapitre suivantAccueil nexen.net