Php random 5 digit number

Przykłady kodu

7
0

php liczba losowa

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

php liczba losowa

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 cyfry

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

W innych językach

Ta strona jest w innych językach

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