Wygeneruj losową liczbę 4 cyfr w PHP
<?php
$FourDigitRandomNumber = mt_rand(1111,9999);
echo $FourDigitRandomNumber;
?>
Ankur
<?php
$FourDigitRandomNumber = mt_rand(1111,9999);
echo $FourDigitRandomNumber;
?>
<?php
echo rand(1,50);
?>
srand(12345);
$randomNumbers = [];
for ($i = 0; $i < 5; ++$i) {
$randomNumbers[] = rand(1, 100);
}
print_r($randomNumbers);