私は参照画像を保存するために使用する私のウェブサイトのページを持っています..
現在、すべての画像をサーバーのディレクトリにドロップするだけで、php が好きなように表示します。
私が聞きたいのは、ページが更新されるたびに異なるランダムな順序で表示する方法です。
コードは以下のとおりです。
$dir = 'images';
$file_display = array ('jpg', 'jpeg', 'png', 'gif');
if (file_exists($dir) ==false) {
echo 'Directory \'', $dir, '\' not found';
} else {
$dir_contents = scandir($dir);
foreach ($dir_contents as $file) {
$file_type = strtolower(end(explode('.', $file)));
if ($file !== '.' && $file !== '..' && in_array($file_type, $file_display) == true) {
echo '<img class="photo" src="', $dir, '/', $file, '" alt="', $file, '" />';
}
}
}