“php rand vs mt_rand” Respostas de código

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

Respostas semelhantes a “php rand vs mt_rand”

Perguntas semelhantes a “php rand vs mt_rand”

Mais respostas relacionadas para “php rand vs mt_rand” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código