php">< ?php
//php iconv.php
//exec it on root dir
$path = dirname(__FILE__);
tree($path);
function encodeFiles($fileName)
{
// echo $fileName;
if (file_exists($fileName)) {
// Read in the contents
$res = file_get_contents($fileName);
$i = pathinfo($fileName);
if(!in_array($i['extension'],array('js','css','php','html','htm'))){
return ;
}
// Just display on the screen the file being modified
echo $fileName . "---form---";
// Convert the contents
echo $encode = mb_detect_encoding($res, array("ASCII", "UTF-8", "GB2312", "GBK"));
echo "---to---UTF-8!\n";
$res = iconv($encode, "UTF-8", $res);
// Write back out to the same file
file_put_contents($fileName, $res);
} //
}
function tree($directory)
{
$mydir = dir($directory);
while ($file = $mydir->read()) {
if ((is_dir("$directory/$file")) AND ($file != ".") AND ($file != "..")) {
tree("$directory/$file");
} else {
$file ="$directory/$file";
// echo "<li>$file</li>\n";
if(is_file($file)){
encodeFiles($file);
}
}
}
}
php 遍历目录批量转换文件编码
来源:清泛原创 2016-08-18 16:27:35 人气: 我有话说( 0 人参与)
遍历当前目录及子目录。把所有的文件编码转换为UTF-8,代码如下:< ?php php iconv.php exec it on root dir$path = dirname(__F...
遍历当前目录及子目录。把所有的文件编码转换为UTF-8,代码如下:
注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
相关热点
- 1js中int和string互换(js int转string,js string转int)
- 2虚拟机安装CentOS出错:EDD:Error 8000 r...
- 3路径 /storage/emulated/0/... 在哪儿?
- 4chown: invalid user: mysql:mysql
- 5[解决]Windows 成功诊断出虚拟内存不足的情况
- 6GIF截图工具, 三款免费好用的Gif截图工具推荐
- 7宽度默认980px?手机浏览器及pc浏览器width...
- 8Web API 最佳入门指南
- 9Mac OS 可视化ssh文件传输工具(替代scp命令行)
- 10【解决】VNC:No configured security ty...
本月排行
- 1Pulse Secure解决方案 35次浏览
- 2虚拟机安装CentOS出错:EDD:Err... 32次浏览
- 3解决:make[x]: *** 没有规则... 25次浏览
- 4无法解析的外部符号 _MiniDump... 24次浏览
- 5VBA 单元格日期与当前日期比较 21次浏览
- 6JS文字卷动效果的调用函数:sta... 17次浏览
- 7解决IIS发布时global_asax的dll... 16次浏览
- 8不同品牌的防火墙组成高可靠性集群 15次浏览
- 9NSIS做的安装程序,可接受命令... 15次浏览
- 10无法将类型“System.Collection... 14次浏览
评论排行
- 1C++ 读写xml方法整理(持续更新)3次评论
- 2Reference to ' ' is ambiguous:符号定义重复2次评论
- 3全民OS2次评论
- 4__attribute__2次评论
- 5海量数据相似度计算之simhash和海...2次评论
- 6C++使用OLE/COM高速读写EXCEL的源码2次评论
- 7AfxIsValidAddress 测试内存地址2次评论
- 8C++入门进阶最佳实战2次评论
- 9phpcms附件上传 Flash换成H52次评论
- 10解决xrdp登陆不上的问题:xrdp s...2次评论