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.33 round
[Notes en ligne] [Exemples]

Arrondi

float round (float val, int precision )
round() retourne la valeur arrondie de val à la précision precision (nombre de chiffres après la virgule).

<?php
  $foo = round( 3.4 );   // $foo == 3.0
  $foo = round( 3.5 );   // $foo == 4.0
  $foo = round( 3.6 );   // $foo == 4.0
?>
     



Note : Le paramètre precision est disponible uniquement en PHP 4.
Voir aussi ceil() et floor().


Chapitre précédentChapitre suivantAccueil nexen.net