Answers for "rand six digit code in php"

PHP
0

generate random number of 4 digit in php

<?php
$FourDigitRandomNumber = mt_rand(1111,9999);
echo $FourDigitRandomNumber;
?>
Posted by: Guest on October-16-2021
0

php random 5 digit number

$limit = 3;
echo random_int(10 ** ($limit - 1), (10 ** $limit) - 1);
Posted by: Guest on May-09-2021

Browse Popular Code Answers by Language