“php rand vs mt_rand” Réponses codées

php rand vs mt_rand

// Since PHP7.1 rand() has become an alias of mt_rand()
// mt_rand() was supposed to be faster and more random than rand() in older PHP Versions
// That means you can use rand() instead of mt_rand() on newer Versions
<?php
  rand(1, 100);		// will generate a random number between 1 and 100
?>
Qing of Kueens

php rand int

random_int ( int $min , int $max );
Cerbrain

Réponses similaires à “php rand vs mt_rand”

Questions similaires à “php rand vs mt_rand”

Plus de réponses similaires à “php rand vs mt_rand” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code