日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

php按照文件名字排序,php readdir 排序问题,如何按照日期进行排序

發布時間:2023/12/20 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php按照文件名字排序,php readdir 排序问题,如何按照日期进行排序 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

目前是這么寫的:

function posts_get($directory,$ext)

{

if (is_dir($directory)) {

$handle = opendir($directory);

while ($file = readdir($handle)){

$subdir = $directory . '/' .$file;

if ($file != '.' && $file !='..' && is_dir($subdir)){

posts_get($subdir,$ext);

} else if( $file != '.' && $file != '..') {

$fileInfo = pathinfo($subdir);

$fileExt = $fileInfo['extension'];

if ($fileExt == $ext){

echo '文件名:' . $file . '————' . '路徑:' . '//' .$_SERVER['HTTP_HOST'] . '/' .$directory . '/' . $file . '
';

}}}

closedir($handle);

}

}

獲取posts目錄里面的html文件,測試目錄里面有5個文件,404.html,405.html,406.html,407.html,408.html

輸出的結果內容如下:

文件名:405.html————路徑://hotbox.ryongyon.com/posts/405.html

文件名:406.html————路徑://hotbox.ryongyon.com/posts/406.html

文件名:407.html————路徑://hotbox.ryongyon.com/posts/407.html

文件名:408.html————路徑://hotbox.ryongyon.com/posts/408.html

文件名:404.html————路徑://hotbox.ryongyon.com/posts/404.html

請問如何將readdir的結果按照文件創建的日期進行排序

總結

以上是生活随笔為你收集整理的php按照文件名字排序,php readdir 排序问题,如何按照日期进行排序的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。