之前有需要,就写了这个类。
功能:
1 遍历目录下的所有文件(可指定后缀名)
2 批量替换文件内容(正则、字符串)
3 批量替换文件后缀名
4 批量替换文件编码
使用例:
$dirExplorer = new DirExplorerClass();$dirExplorer->getDirExplorer('D:/test1/test2/'); //遍历目录D:/test1/test2/$dirExplorer->modifyFileBy_replace('aa','QQ','shift-jis','UTF-8','txt','TXT'); //将所有文件内容中的aa替换为QQ,文件编码从shift-jis转换为UTF-8,将所有txt的后缀名改为TXT
类代码:
class DirExplorerClass{ var $dirPath_array = array();//遍历文件结果集合 function __construct(){ //donothing } /* * return a directory handle or die */ private function openDir($dirPath_target) { if (is_dir($dirPath_target)) { return opendir($dirPath_target); }else { die("$dirPath_target is Not a Directory"); } } /* * close a directory handle */ private function closeDir($dirHander) { closedir($dirHander); } /* * 遍历指定目录,返回其下的文件名集合 * * Parameters: * 1 dirPath:需要遍历的文件夹 * 2 extension:只返回指定后缀名的文件 * Return: * 遍历文件结果集合 */ function getDirExplorer($dirPath,$extension=''){ $dirHander=$this->openDir($dirPath); while($fileName = readdir($dirHander)){ if($fileName !='.' && $fileName !='..'){ $path = $dirPath."/" . $fileName; if(is_dir($path)){ $this->getDirExplorer($path); }else{ if(isset($extension) && $extension != ''){ $fileExtension = end(explode('.',$fileName)); if($fileExtension != $extension){ continue; } } $this->dirPath_array[]=$path; } } } $this->closeDir($dirHander); return $this->dirPath_array; } /* * 字符串替换文件内容(区别大小写)、编码、后缀名 * * Parameters: * 1 search: 需要替换的字符串 (数组可) * 2 replace: 替换后的字符串 (数组可) * 3 in_charset: 原编码 * 4 out_charset: 新编码 * 5 in_extension: 原后缀名 * 6 out_extension:新后缀名 * Return: * true or false */ function modifyFileBy_replace($search, $replace, $in_charset='', $out_charset='', $in_extension='', $out_extension=''){ /* input check */ if( !isset($search) || !isset($replace) || (strlen($in_charset)!=0 && strlen($in_charset)==0) || (strlen($in_charset)==0 && strlen($in_charset)!=0) || (strlen($in_extension)!=0 && strlen($out_extension)==0) || (strlen($in_extension)==0 && strlen($out_extension)!=0) ){ return false; } foreach($this->dirPath_array as $key=>$file) { $content = file_get_contents($file);//read contents $content = str_replace($search, $replace, $content); if(strlen($in_charset)!=0 && strlen($out_charset)!=0){ /* change the encode */ $this->changeCharset($in_charset, $out_charset, 1, $content); } unlink($file); if(strlen($in_extension)!=0 && strlen($out_extension)!=0){ /* change file's extension */ $this->changeExtension($in_extension, $out_extension, 1, $file); } file_put_contents($file, $content); unset($content); /* 更新遍历文件名结果集 */ $this->dirPath_array[$key] = $file; } return true; } /* * 字符串替换文件内容(忽略大小写)、编码、后缀名 */ function modifyFileBy_ireplace($search, $replace, $in_charset='', $out_charset='', $in_extension='', $out_extension=''){ //不贴了 和上面的modifyFileBy_replace一样 只是用str_ireplace替换而已 } /* * 正则替换文件内容(忽略大小写)、编码、后缀名 * * Parameters: * 1 search: 需要替换内容的正则表达式 * 2 replace: 替换后的字符串 * 3 in_charset: 原编码 * 4 out_charset: 新编码 * 5 in_extension: 原后缀名 * 6 out_extension:新后缀名 * Return: * true or false */ function modifyFileBy_regex($search, $replace, $in_charset='', $out_charset='', $in_extension='', $out_extension=''){ /* input check */ if( !isset($search) || !isset($replace) || (strlen($in_charset)!=0 && strlen($in_charset)==0) || (strlen($in_charset)==0 && strlen($in_charset)!=0) || (strlen($in_extension)!=0 && strlen($out_extension)==0) || (strlen($in_extension)==0 && strlen($out_extension)!=0) ){ return false; } if(preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) { /* remove eval-modifier from $search */ $search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]); } foreach($this->dirPath_array as $key=>$file) { $content = file_get_contents($file);//read contents $content = preg_replace($search, $replace, $content); if(strlen($in_charset)!=0 && strlen($out_charset)!=0){ /* change the encode */ $this->changeCharset($in_charset, $out_charset, 1, $content); } unlink($file); if(strlen($in_extension)!=0 && strlen($out_extension)!=0){ /* change file's extension */ $this->changeExtension($in_extension, $out_extension, 1, $file); } file_put_contents($file, $content); unset($content); /* 更新遍历文件名结果集 */ $this->dirPath_array[$key] = $file; } return true; } /* * 变换编码 * * Parameters: * 1 in_charset: 原编码 * 2 out_charset: 新编码 * 3 flag: 0对遍历得到的文件转换编码 1对指定内容转换编码 * 4 content: 仅在flag为1时使用 * Return: * true or false */ function changeCharset($in_charset='', $out_charset='', $flag=0, &$content=''){ /* input check */ if (strlen($in_charset)==0 || strlen($out_charset)==0){ return false; } if($flag == 0){ /* 对遍历得到的文件转换编码 */ foreach($this->dirPath_array as $file) { $content = file_get_contents($file);//read contents /* change the encode */ $content = iconv($in_charset, $out_charset, $content); unlink($file); file_put_contents($file, $content); unset($content); } }else{ /* 对指定内容转换编码 */ if(strlen($content) != 0){ $content = iconv($in_charset, $out_charset, $content); } } return true; } /* * 变换后缀名 * * Parameters: * 1 in_extension: 原后缀名 * 2 out_extension: 新后缀名 * 3 flag: 0对遍历得到的文件变换后缀名 1对指定文件名变换后缀名 * 4 fileName: 仅在flag为1时使用 * Return: * true or false */ function changeExtension($in_extension='', $out_extension='', $flag=0, &$fileName=''){ /* inout check */ if(strlen($in_extension)==0 || strlen($out_extension)==0){ return false; } if($flag == 0){ /* 对遍历得到的文件变换后缀名 */ foreach($this->dirPath_array as $key=>$file) { /* change file's extension */ $tmp = explode('.',$file); $nowExtension = array_pop($tmp); if($nowExtension == $in_extension){ $content = file_get_contents($file);//read contents unlink($file); $file = implode('.',$tmp).'.'.$out_extension; file_put_contents($file, $content); unset($content); } /* 更新遍历文件名结果集 */ $this->dirPath_array[$key] = $file; } }else{ /* 对指定文件名变换后缀名 */ if(strlen($fileName) != 0){ $tmp = explode('.',$fileName); $nowExtension = array_pop($tmp); if($nowExtension == $in_extension){ $fileName = implode('.',$tmp).'.'.$out_extension; } } } return true; }}
回复讨论(解决方案)
这个很强大,学习了~
lz你太伟大了。。。。。。。。
加分加分加分
不错
不过有些还是不规范
比如:modifyFileBy_replace 一时驼峰式,一时下划线分隔式
公用函数没用使用 public
私有函数开头应该以 _ 开头
不错
不过有些还是不规范
比如:modifyFileBy_replace 一时驼峰式,一时下划线分隔式
公用函数没用使用 public
私有函数开头应该以 _ 开头
对
是不太规范
是很不规范!!!
private function openDir($dirPath_target)
private function closeDir($dirHander)
这两个方法没有必要存在,在里面也只是调用原生的函数
建议在 递归方法(getDirExplorer)中回调工作方法,而不是构造整个目录树后再用工作函数处理。
并不是什么时候都需要返回目录树的,比如你的应用只是替换文件内容
学习了.
ftgyhu
是很不规范!!! 好像是这样
private function openDir($dirPath_target)
private function closeDir($dirHander)
这两个方法没有必要存在,在里面也只是调用原生的函数
建议在 递归方法(getDirExplorer)中回调工作方法,而不是构造整个目录树后再用工作函数处理。
并不是什么时候都需要返回目录树的,比如你的应用只是替换文……
打算重写的时候去掉这两个方法
工作方法的话,主要是希望这个类有一定通用性
例子中的函数有点功能大杂烩的味道、一次遍历把文本替换、编码、后缀名改变都执行了。但实际中也有可能只希望变换编码或者后缀,所以这两个其实是分别单独作为2个功能提供的。所以考虑把遍历和各功能分开来,自由选择调用。
打算加个__get,在任一个功能被执行完毕后,可随时返回最新的遍历结果集合。
不错学习下~
好的,谢谢!!!
学习一下
这个很强大,学习了~
学习。
突然发现我进错板块了 OMG
很好!学习了。
good!
引用 4 楼 yangball 的回复:
不错
不过有些还是不规范
比如:modifyFileBy_replace 一时驼峰式,一时下划线分隔式
公用函数没用使用 public
私有函数开头应该以 _ 开头
对
是不太规范
不管规范不规范,写出来就很强了,能写出来的有多少?
服务吧
/* * 遍历指定目录,返回其下的文件名集合 * * Parameters: * 1 dirPath:需要遍历的文件夹 * 2 extension:只返回指定后缀名的文件 * Return: * 遍历文件结果集合 */ function getDirExplorer($dirPath,$extension=''){ $dirHander=$this->openDir($dirPath); while($fileName = readdir($dirHander)){ if($fileName !='.' && $fileName !='..'){ $path = $dirPath."/" . $fileName; if(is_dir($path)){ $this->getDirExplorer($path); }else{ if(isset($extension) && $extension != ''){ $fileExtension = end(explode('.',$fileName)); if($fileExtension != $extension){ continue; } } $this->dirPath_array[]=$path; } } } $this->closeDir($dirHander); return $this->dirPath_array; }
好东西
yidingdianer,yebucuo,bucuo
学习了。。
呵呵不错,用glob可能会减少一些代码
这些功能其实比较常见,linux下会比较轻松,3,4行shell估计就可以搞定了
先慨叹一下,因为我写不出,没那个耐心
后问一个问题:
为什么不用SPL?
用SplFileInfo、SplFileObject和迭代器应该更好
另外,php处理windows下unicode的文件名还是死症,只能期待php开发者提高,所以目前代码必须考虑这个问题
耐心看完了。写得不错!
不过有些代码的效率应该可以再提高些,
比如end(explode('.',$fileName));如果改成substr(strrchr($fileName,'.'),1) ,这个也许效率会更高些!
不过有些代码的效率应该可以再提高些,
比如end(explode('.',$fileName));如果改成substr(strrchr($fileName,'.'),1) ,这个也许效率会更高些!
啊 对的
谢谢你的指教 重写的时候再优化一下
先慨叹一下,因为我写不出,没那个耐心
后问一个问题:
为什么不用SPL?
用SplFileInfo、SplFileObject和迭代器应该更好
另外,php处理windows下unicode的文件名还是死症,只能期待php开发者提高,所以目前代码必须考虑这个问题
谢谢指教
SplFileInfo、SplFileObject不了解 周末看看
没有看到我期望的功能,比如文件自动侦测编码,然后转换为目标编码...
楼主很强大,我以前也准备搞个的,想想算了,没那个时间.
给点积分吧
mark
hao
不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂不懂
多多学习吧
一个rename 就能解决啊
好东东
谢谢分享
学习,谢谢楼主~~
没看懂

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
