91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在php中遍歷文件夾的方法有哪些

發布時間:2021-01-28 11:36:12 來源:億速云 閱讀:101 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關在php中遍歷文件夾的方法有哪些,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

/*獲取所有文件*/

function get_all_files( $path ){
  $list = array();
  foreach( glob( $path . '/*') as $item ){
    if( is_dir( $item ) ){
     $list = array_merge( $list , get_all_files( $item ) );
    }
    else{
     $list[] = $item;
    }
  }
  return $list;
}

/*獲取所有文件,只要一層目錄文件*/

function get_my_files( $path ){
  $list = array();
  foreach( glob( $path . '/*') as $item ){
    if( is_dir( $item ) ){
     $list[] = $item;
    }
  }
  return $list;
}

php 遍歷 文件夾 加強版

/*獲取所有文件,帶時間*/

function get_all_files_time( $path ){
 clearstatcache();
  $list = array();
 
  foreach( glob( $path . '/*') as $item ){
    if( is_dir( $item ) ){
  $list = array_merge( $list , get_all_files_time( $item ) );
 
    }
    else{
 
  $list[$item] = ftime(fileatime($item)); //fileatime 訪問時間 fileatime 訪問時間 filemtime 修改時間
 
 
    }
  }
  return $list;
}

/*獲取所有文件,帶時間*/

function get_all_files_mtime( $path ){
 clearstatcache();
  $list = array();
 
  foreach( glob( $path . '/*') as $item ){
    if( is_dir( $item ) ){
  $list = array_merge( $list , get_all_files_mtime( $item ) );
 
    }
    else{
 
  $list[$item] = ftime(filemtime($item)); //fileatime 訪問時間 fileatime 訪問時間 filemtime 修改時間
 
 
    }
  }
  return $list;
}

看完上述內容,你們對在php中遍歷文件夾的方法有哪些有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

房产| 饶河县| 丹阳市| 宣城市| 长汀县| 巧家县| 波密县| 泰安市| 土默特左旗| 临泽县| 罗定市| 清水河县| 台东市| 霍山县| 永昌县| 凭祥市| 永安市| 保靖县| 万州区| 芮城县| 柳江县| 瑞丽市| 闸北区| 孝义市| 曲沃县| 新和县| 高邑县| 鲜城| 镇康县| 长宁县| 曲阜市| 政和县| 奇台县| 双峰县| 裕民县| 利川市| 通道| 百色市| 都兰县| 南昌市| 青川县|