php random integer 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 randon integer 4 digit

$digits = 3;
echo rand(pow(10, $digits-1), pow(10, $digits)-1);

Example 3: php random number generator

<?php
  echo rand(1,50);
?>

Example 4: php random integer

echo random_int(0,50);

Example 5: php random number

rand(0,10);
or
random_int(0,10)

Example 6: php rand int

random_int ( int $min , int $max );

Tags:

Misc Example