我有一些PHP脚本,它读取图像目录并回显用户搜索的结果。
我需要找到一种从目录中对这些搜索结果进行排序的方法,我知道你可以在数组上使用natsort()但是这没有用,因为结果不在数组中,只是一个while语句。
有谁知道这是否可行?或者可能更容易调整我的代码以首先将文件名添加到数组中?
<?php
$dir = get_post_meta($post->ID, "Library", true);
// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if(stristr($file,$_POST['image_search'])){
echo ('<li><div class="thumb-contain"><a href="/'.$dir . $file.'" class="photo-link" rel="attachment"><img src="/asset-thumbs/'. $file .'" /></a><br/><p><a href="/'.$dir . $file.'" class="photo-link" target="_blank">View image</a> | <a href="/download.php?download_file='.$dir . $file.'">Download image</a> <p>'. $file .'</p></div></li>');
}
}
closedir($dh);
}
}
?>
好的,我通过将结果添加到数组中来实现它 - 我不是一个PHP向导,所以如果有人发现任何可能更干净的东西会非常棒,否则感谢您的帮助。
<?php
$dir = get_post_meta($post->ID, "Library", true);
// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if(stristr($file,$_POST['image_search'])){
$files[] = $file;
}
}
closedir($dh);
natsort($files);
foreach($files as $file) {
echo ('<li><div class="thumb-contain"><a href="/'.$dir . $file.'" class="photo-link" rel="attachment"><img src="/asset-thumbs/'. $file .'" /></a><br/><p><a href="/'.$dir . $file.'" class="photo-link" target="_blank">View image</a> | <a href="/download.php?download_file='.$dir . $file.'">Download image</a> <p>'. $file .'</p></div></li>');
}
}
}
?>
答案 0 :(得分:0)
您可以使用函数scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] )
- 它返回数组并支持排序作为选项。