Chọn một tệp ngẫu nhiên từ thư mục. Điều này có thể hữu ích nếu bạn muốn hiển thị một hình ảnh ngẫu nhiên trên trang web của mình.
Ví dụ, một hình ảnh nền ngẫu nhiên từ một thư mục trong các tệp của bạn.
Mã:
$files = glob(realpath('../img') . '/*.*');
$file = array_rand($files);
echo $files[$file];
Để hiểu rõ bản chất của các đoạn code trên, các bạn nên đọc thêm tài liệu về các hàm glob , realpath , array_rand trong PHP



Select a random file from directory. This can be useful if you want to display a random image on your website.
For an example a background image randomly from a directory in your files:
Mã:
$files = glob(realpath('../img') . '/*.*');
$file = array_rand($files);
echo $files[$file];