create random 4 digit php code example
Example 1: php random number
// $min and $max are optional
rand($min,$max);
Example 2: php random 5 digit number
$limit = 3;
echo random_int(10 ** ($limit - 1), (10 ** $limit) - 1);
// $min and $max are optional
rand($min,$max);
$limit = 3;
echo random_int(10 ** ($limit - 1), (10 ** $limit) - 1);