create rand number only once php code example
Example 1: php random number
rand(0,10);
or
random_int(0,10)
Example 2: php rand int
random_int ( int $min , int $max );
rand(0,10);
or
random_int(0,10)
random_int ( int $min , int $max );