PHP遍历文件夹与文件类及处理类用法实例

这篇文章主要介绍了PHP遍历文件夹与文件类及处理类用法实例,包括了文件及文件夹的遍历以及清除utf8的bom头方法,非常实用,需要的朋友可以参考下

本文实例讲述了PHP遍历文件夹与文件类及处理类用法,非常具有实用价值。分享给大家供大家参考。具体方法如下:

FindFile.class.php类文件用于遍历目录文件,具体代码如下:

  1. <?php
  2. /** 遍历文件夹及文件类
  3. * Date: 2013-03-21
  4. * Author: fdipzone
  5. * Ver: 1.0
  6. */
  7. class FindFile{
  8. public $files = array(); // 存储遍历的文件
  9. protected $maxdepth; // 搜寻深度,0表示没有限制
  10. /* 遍历文件及文件夹
  11. * @param String $spath 文件夹路径
  12. * @param int $maxdepth 搜寻深度,默认搜寻全部
  13. */
  14. public function process($spath, $maxdepth=0){
  15. if(isset($maxdepth) && is_numeric($maxdepth) && $maxdepth>0){
  16. $this->maxdepth = $maxdepth;
  17. }else{
  18. $this->maxdepth = 0;
  19. }
  20. $this->files = array();
  21. $this->traversing($spath); // 遍历
  22. }
  23. /* 遍历文件及文件夹
  24. * @param String $spath 文件夹路径
  25. * @param int $depth 当前文件夹深度
  26. */
  27. private function traversing($spath, $depth=1){
  28. if($handle = opendir($spath)){
  29. while(($file=readdir($handle))!==false){
  30. if($file!='.' && $file!='..'){
  31. $curfile = $spath.'/'.$file;
  32. if(is_dir($curfile)){ // dir
  33. if($this->maxdepth==0 || $depth<$this->maxdepth){ // 判断深度
  34. $this->traversing($curfile, $depth+1);
  35. }
  36. }else{ // file
  37. $this->handle($curfile);
  38. }
  39. }
  40. }
  41. closedir($handle);
  42. }
  43. } //www.phpfensi.com
  44. /** 处理文件方法
  45. * @param String $file 文件路径
  46. */
  47. protected function handle($file){
  48. array_push($this->files, $file);
  49. }
  50. }
  51. ?>

UnsetBom.class.php用于清除utf8+bom文件的bom,即头三个字节 0xEF 0xBB 0xBF,继承FindFile类,具体代码如下:

  1. <?php
  2. /** 遍历所有文件,清除utf8+bom 0xEF 0xBB 0xBF
  3. * Date: 2013-03-21
  4. * Author: fdipzone
  5. * Ver: 1.0
  6. */
  7. class UnsetBom extends FindFile{
  8. private $filetype = array(); // 需要处理的文件类型
  9. // 初始化
  10. public function __construct($filetype=array()){
  11. if($filetype){
  12. $this->filetype = $filetype;
  13. }
  14. }
  15. /** 重写FindFile handle方法
  16. * @param String $file 文件路径
  17. */
  18. protected function handle($file){
  19. if($this->check_ext($file) && $this->check_utf8bom($file)){ // utf8+bom
  20. $this->clear_utf8bom($file); // clear
  21. array_push($this->files, $file); // save log
  22. }
  23. }
  24. /** 检查文件是否utf8+bom
  25. * @param String $file 文件路径
  26. * @return boolean
  27. */
  28. private function check_utf8bom($file){
  29. $content = file_get_contents($file);
  30. return ord(substr($content,0,1))===0xEF && ord(substr($content,1,1))===0xBB && ord(substr($content,2,1))===0xBF;
  31. }
  32. /** 清除utf8+bom
  33. * @param String $file 文件路径
  34. */
  35. private function clear_utf8bom($file){
  36. $content = file_get_contents($file);
  37. file_put_contents($file, substr($content,3), true); // 去掉头三个字节
  38. }
  39. /** 检查文件类型
  40. * @param String $file 文件路径
  41. * @return boolean
  42. */
  43. private function check_ext($file){
  44. $file_ext = strtolower(array_pop(explode('.',basename($file))));
  45. if(in_array($file_ext, $this->filetype)){
  46. return true;
  47. }else{
  48. return false;
  49. }
  50. }
  51. }
  52. ?>

去除utf8 bom头Demo遍历文件示例:

  1. <?php
  2. require('FindFile.class.php');
  3. require('UnsetBom.class.php');
  4. $folder = dirname(__FILE__);
  5. $obj = new UnsetBom(array('php','css','js')); // 文件类型
  6. $obj->process($folder);
  7. print_r($obj->files);
  8. ?>

希望本文所述对大家PHP程序设计的学习有所帮助。