Answers for "php 6 random numbers using time()"

PHP
7

php random number

// $min and $max are optional
rand($min,$max);
Posted by: Guest on April-14-2020
2

php random number

rand(0,10);
or
random_int(0,10)
Posted by: Guest on October-03-2020

Code answers related to "php 6 random numbers using time()"

Browse Popular Code Answers by Language