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.30 pow
[Notes en ligne] [Exemples]

Puissance

number pow (number base, number exp)
pow() retourne base élevé à la puissance exp. Si possible, pow() retourne un integer.
Si le calcul ne peut être fait, une alerte sera affichée et pow() retournera FALSE.

Quelques exemples avec pow()

<?php
  var_dump( pow(2,8) ); 
// int(256)
  echo pow(-1,20); 
// 1
  echo pow(0, 0); 
// 1
echo pow(-1, 5.5); 
  // erreur
?>
     

En PHP 4.0.6 plus ancien, pow() retournait toujours un nombre à virgule flottante (float), et n'affichait pas d'alerte. Si le calcul est impossible (racine d'un nombre négatif, par exemple), pow() retournait NAN.
Voir aussi exp().


Chapitre précédentChapitre suivantAccueil nexen.net