代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
遍历目录,生成目录下每个文件的md5值并写入到结果文
作者:
德华
/ 发布于
2017/2/21
/
996
<?php /** * @author Administrator * */ class TestGenerate { public static $appFolder = ""; public static $ignoreFilePaths = array ( "xxxx/xxx.php" ); public static function start() { $AppPath = "E:\\myApp"; TestGenerate::$appFolder = $AppPath; $destManifestPath = "E:\\temp2\\dest.md5.txt"; // dest file handle $manifestHandle = fopen ( $destManifestPath, "w+" ); // write header TestGenerate::writeMaifestHeader ( $manifestHandle ); // write md5 TestGenerate::traverse ( $AppPath, $manifestHandle ); // write footer TestGenerate::writeMaifestFooter ( $manifestHandle ); // close file fclose ( $manifestHandle ); } /** * 遍历应用根目录下的文件,并生成对应的文件长度及md5信息 * * @param unknown $AppPath * 应用根目录,如:xxx/xxx/analytics * @param string $destManifestPath * 生成的manifest文件存放位置的文件句柄 */ public static function traverse($AppPath, $manifestHandle) { if (! file_exists ( $AppPath )) { printf ( $AppPath . " does not exist!" ); return; } if (! is_dir ( $AppPath )) { printf ( $AppPath . " is not a directory!" ); return; } if (! ($dh = opendir ( $AppPath ))) { printf ( "Failure while read diectory!" ); return; } // read files while ( ($file = readdir ( $dh )) != false ) { $subDir = $AppPath . DIRECTORY_SEPARATOR . $file; if ($file == "." || $file == "..") { continue; } else if (is_dir ( $subDir )) { // rescure TestGenerate::traverse ( $subDir, $manifestHandle ); } else { // Sub is a file. TestGenerate::writeOneFieToManifest ( $subDir, $manifestHandle ); } } // close dir closedir ( $dh ); } /** * 写一个文件的md5信息到文件中 * * @param unknown $filePath * @param unknown $fileHandle */ public static function writeOneFieToManifest($filePath, $fileHandle) { if (! file_exists ( $filePath )) { continue; } $relativePath = str_replace ( TestGenerate::$appFolder . DIRECTORY_SEPARATOR, '', $filePath ); $relativePath = str_replace ( "\\", "/", $relativePath ); // ignore tmp directory if (strpos ( $relativePath, "tmp/" ) === 0) { return; } $fileSize = filesize ( $filePath ); $fileMd5 = @md5_file ( $filePath ); $content = "\t\t"; $content .= '"'; $content .= $relativePath; $content .= '"'; $content .= ' => array("'; $content .= $fileSize; $content .= '","'; $content .= $fileMd5; $content .= '"),'; $content .= "\n"; if (! fwrite ( $fileHandle, $content )) { print ($filePath . " can not be written!") ; } } /** * 在manifes文件中写入头信息 * * @param unknown $fileHandle */ public static function writeMaifestHeader($fileHandle) { $header = "<?php"; $header .= "\n"; $header .= "// This file is automatically generated"; $header .= "\n"; $header .= "namespace test;"; $header .= "\n"; $header .= "class MyFile {"; $header .= "\n"; $header .= "\tstatic \$allFiles=array("; $header .= "\n"; if (! fwrite ( $fileHandle, $header )) { printf ( "Failure while write file header." ); } } /** * 在manifes文件中写入尾部信息 * * @param unknown $fileHandle */ public static function writeMaifestFooter($fileHandle) { $footer = "\t);"; $footer .= "\n"; $footer .= "}"; $footer .= "\n"; if (! fwrite ( $fileHandle, $footer )) { printf ( "Failure while write file header." ); } } } // Start application TestGenerate::start (); ?>
试试其它关键字
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
德华
贡献的其它代码
(
16
)
.
多条数据合并成一条,数据量大,用逗号隔开
.
解析域名对应的 IP 地址
.
使用 FTP 进行文件传输
.
遍历目录,生成目录下每个文件的md5值并写入到结果文
.
#正则匹配表名
.
写日志
.
select动态加载选择(兼容各种浏览器)
.
实现简单的单链表
.
判断字符是否存在汉字的方法
.
html5阻止在移动端手机横屏效果
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3