4 Digit Random Number In Php Code Example


Example 1: random number generator in php

you can use rand() function for that in php. Example: Generate random numbers between 1 to 50 <?php   echo rand(1,50); ?>

Example 2: php random 5 digit number

$limit = 3; echo random_int(10 ** ($limit - 1), (10 ** $limit) - 1);

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable