編集:
asort() 関数を使用してバージョンを並べ替えます。
asort()
昇順 -arsort()
逆順
<?php
// You can use the desired folder to check and comment the others.
// foreach (glob("../downloads/*") as $path) { // lists all files in sub-folder called "downloads"
foreach (glob("images/*.jpg") as $path) { // lists all files in folder called "test"
$docs[$path] = filectime($path);
} arsort($docs); // sort by value, preserving keys
foreach ($docs as $path => $timestamp) {
// additional options
// print date("d M. Y: ", $timestamp);
// print '<a href="'. $path .'">'. basename($path) .'</a>' . " Size: " . filesize($path) .'<br />';
echo '<img src="'.$path.$file.'"/><br />';
}
?>
前の回答
glob( ) 関数を使用します。
機能を利用してglob()
、ファイルやフォルダを自分好みに設定できます。
PHP.netの glob( )関数の詳細
すべてのファイルを表示するには、次を使用します。(glob("folder/*.*")
<?php
foreach (glob("images/*.jpg") as $file) { //change "images" to your folder
if ($file != '.' || $file != '..') {
// display images one beside each other.
// echo '<img src="'.$dir.$file.'"/>';
// display images one underneath each other.
echo '<img src="'.$dir.$file.'"/><br />';
}
}
?>