Sqrt
<<<
srand Tan
>>>

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.52 srand()Initialise le générateur de nombres aléatoires

[ Exemples avec srand ]   PHP 3, PHP 4

void  srand ( int   seed )

srand initialise le générateur de nombres aléatoires avec seed .

<?php
// initialise avec les microsecondes depuis la dernière seconde entière
  
srand((float) microtime()*1000000);
  
$randval = rand();
?>

Voir aussi rand , getrandmax , mt_rand , mt_srand et mt_getrandmax .

<< srand >>
Sqrt Mathématiques Tan