Php random 4 digit number

Code examples

7
0

php random number

// $min and $max are optional
rand($min,$max);
2
0

php random integer

echo random_int(0,50);
1
0

php random number

rand();
0
0

php random 5 digit number

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

php randon integer 4 digit

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

generate unique random number php

<?php
$n=range(11,20);
shuffle($n);
for ($x=0; $x< 10; $x++)
{
echo $n[$x].' ';
}
echo "\n"
?>

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................