Answers for "Math.random() php"

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
0

php random

mt_rand(1000, 9999)
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language