random - PHP - Programmation
Marsh Posté le 02-02-2003 à 11:38:32
Hello,
Pour une initialiser une valeur aléatoire tu commences pas faire un srand()
Ex:
srand((float) microtime()+ 100000)
Ensuite tu peux utiliser
$var = rand(min int, max int)
Ex:
echo rand(1, 23);
Sortie: 20 (Nombre aléatoire entre 1 et 23)
Voila
Marsh Posté le 02-02-2003 à 11:18:35
bonjour,
je cherche l'équivalent du javascript :
var nbre = Math.round(Math.random()*100000)
en php.
merci pour vos réponses