“PHP RAND VS MT_RAND” Código de respuesta

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

Respuestas similares a “PHP RAND VS MT_RAND”

Preguntas similares a “PHP RAND VS MT_RAND”

Más respuestas relacionadas con “PHP RAND VS MT_RAND” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código