mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
5 lines
99 B
PHP
5 lines
99 B
PHP
<?php
|
|
$arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
|
|
$index = rand(0, count($arr) - 1);
|
|
echo $arr[$index];
|