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ã: Chọn tất cả
$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ã: Chọn tất cả
$files = glob(realpath('../img') . '/*.*');
$file = array_rand($files);
echo $files[$file];