expm1
<<<
Floor fmod
>>>

6.51 Mathématiques
6 Index des fonctions
 Manuel PHP

Introduction
Pré-requis
Installation
Configuration à l'exécution
Types de ressources
Constantes Prédefinies
Abs
Acos
acosh
Asin
asinh
Atan
Atan2
atanh
base_convert
BinDec
Ceil
Cos
cosh
DecBin
DecHex
DecOct
deg2rad
Exp
expm1
->Floor
fmod
getrandmax
hexdec
hypot
is_finite
is_infinite
is_nan
lcg_value
Log
Log10
log1p
max
min
mt_getrandmax
mt_rand
mt_srand
OctDec
pi
pow
rad2deg
rand
round
Sin
sinh
Sqrt
srand
Tan
tanh

6.51.26 Floor()Arrondi à l'entier inférieur

[ Exemples avec floor ]   PHP 3, PHP 4

float  floor ( float   number )

floor retourne l'entier inférieur du nombre number . La valeur retournée est un nombre à virgule flottante, ( float ) car ces nombres peuvent être plus grands que les entiers.

NOTE: floor sous PHP/FI retournait un float. Utilisez: $new = (float)floor($number); pour retrouver le comportement traditionnel.

Voir aussi ceil et round .

<< Floor >>
expm1 Mathématiques fmod