亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

PHP中怎么遍歷文件夾與文件類

發布時間:2021-06-23 15:28:39 來源:億速云 閱讀:173 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關PHP中怎么遍歷文件夾與文件類,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

FindFile.class.php類文件用于遍歷目錄文件,具體代碼如下:

<?php 
/** 遍歷文件夾及文件類 
*  Date:  2013-03-21 
*  Author: fdipzone 
*  Ver:  1.0 
*/ 
class FindFile{ 
 
  public $files = array();  // 存儲遍歷的文件 
  protected $maxdepth;    // 搜尋深度,0表示沒有限制 
 
  /* 遍歷文件及文件夾 
  *  @param String $spath   文件夾路徑 
  *  @param int  $maxdepth 搜尋深度,默認搜尋全部 
  */ 
  public function process($spath, $maxdepth=0){ 
    if(isset($maxdepth) && is_numeric($maxdepth) && $maxdepth>0){ 
      $this->maxdepth = $maxdepth; 
    }else{ 
      $this->maxdepth = 0; 
    } 
    $this->files = array(); 
    $this->traversing($spath); // 遍歷 
  } 
 
  /* 遍歷文件及文件夾 
  *  @param String $spath 文件夾路徑 
  *  @param int  $depth 當前文件夾深度 
  */ 
  private function traversing($spath, $depth=1){ 
    if($handle = opendir($spath)){ 
      while(($file=readdir($handle))!==false){ 
        if($file!='.' && $file!='..'){ 
          $curfile = $spath.'/'.$file; 
 
          if(is_dir($curfile)){ // dir 
            if($this->maxdepth==0 || $depth<$this->maxdepth){ // 判斷深度 
              $this->traversing($curfile, $depth+1); 
            } 
          }else{ // file 
            $this->handle($curfile); 
          } 
        } 
      } 
      closedir($handle); 
    } 
  } 
 
  /** 處理文件方法 
  * @param String $file 文件路徑 
  */ 
  protected function handle($file){ 
    array_push($this->files, $file); 
  } 
} 
?>

UnsetBom.class.php用于清除utf8+bom文件的bom,即頭三個字節 0xEF 0xBB 0xBF,繼承FindFile類,具體代碼如下:

<?php 
/** 遍歷所有文件,清除utf8+bom 0xEF 0xBB 0xBF 
*  Date:  2013-03-21 
*  Author: fdipzone 
*  Ver:  1.0 
*/ 
class UnsetBom extends FindFile{ 
 
  private $filetype = array(); // 需要處理的文件類型 
 
  // 初始化 
  public function __construct($filetype=array()){ 
    if($filetype){ 
      $this->filetype = $filetype; 
    } 
  } 
 
  /** 重寫FindFile handle方法 
  *  @param String $file 文件路徑 
  */ 
  protected function handle($file){ 
    if($this->check_ext($file) && $this->check_utf8bom($file)){ // utf8+bom 
      $this->clear_utf8bom($file);    // clear 
      array_push($this->files, $file);  // save log 
    } 
  } 
 
  /** 檢查文件是否utf8+bom 
  *  @param String $file 文件路徑 
  *  @return boolean 
  */ 
  private function check_utf8bom($file){ 
    $content = file_get_contents($file); 
    return ord(substr($content,0,1))===0xEF && ord(substr($content,1,1))===0xBB && ord(substr($content,2,1))===0xBF; 
  } 
 
  /** 清除utf8+bom 
  *  @param String $file 文件路徑 
  */ 
  private function clear_utf8bom($file){ 
    $content = file_get_contents($file); 
    file_put_contents($file, substr($content,3), true); // 去掉頭三個字節 
  } 
 
  /** 檢查文件類型 
  *  @param String $file 文件路徑 
  *  @return boolean 
  */ 
  private function check_ext($file){ 
    $file_ext = strtolower(array_pop(explode('.',basename($file)))); 
    if(in_array($file_ext, $this->filetype)){ 
      return true; 
    }else{ 
      return false; 
    } 
  } 
} 
?>

去除utf8 bom頭Demo遍歷文件示例:

<?php 
require('FindFile.class.php'); 
require('UnsetBom.class.php'); 
 
$folder = dirname(__FILE__); 
 
$obj = new UnsetBom(array('php','css','js')); // 文件類型 
$obj->process($folder); 
 
print_r($obj->files); 
?>

以上就是PHP中怎么遍歷文件夾與文件類,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

php
AI

隆昌县| 尼勒克县| 镇坪县| 句容市| 延长县| 华池县| 商洛市| 垫江县| 青州市| 曲阳县| 化隆| 阜南县| 卢氏县| 忻州市| 定日县| 湘潭县| 斗六市| 上栗县| 隆昌县| 无极县| 余干县| 东莞市| 托里县| 宁晋县| 衢州市| 永新县| 昌乐县| 丰台区| 溧阳市| 尉氏县| 西乌珠穆沁旗| 兴文县| 师宗县| 衡山县| 永善县| 灵山县| 寻乌县| 台北市| 深水埗区| 松潘县| 康马县|