7

我有一个小 php 脚本,它读取一个目录,然后将所有文件(在本例中为 jpg)回显到一个 jquery 图像滑块中。它工作得很好,但我不知道如何按名称降序对图像进行排序。目前图像是随机的。

<?php
$dir = 'images/demo/';
if ($handle = opendir($dir)) {

while (false !== ($file = readdir($handle))) {
    echo '<img src="'.$dir.$file.'"/>';
}

closedir($handle);
}
?>

对此的任何帮助都会很棒。

还有一件事我不明白。该脚本在该文件夹中拍摄了 2 个不存在的无名非 jpg 文件???但我还没有真正检查过

4

3 回答 3

13

尝试这个:

$dir = 'images/demo/';
$files = scandir($dir);
rsort($files);
foreach ($files as $file) {
    if ($file != '.' && $file != '..') {
        echo '<img src="' . $dir . $file . '"/>';
    }
}
于 2013-08-07T18:24:35.063 回答
5

尝试将每个项目放入一个数组中,然后对其进行排序:

$images = array();

while (false !== ($file = readdir($handle))) {
    $images[] = $file;
}

natcasesort($images);

foreach ($images as $file) {
    echo '<img src="'.$dir.$file.'"/>';
}
于 2013-08-07T18:21:29.820 回答
1

编辑:

使用 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 />'; 

    }
}
?>
于 2013-08-07T18:37:15.130 回答