php 遍历目录文件编码转换
发布:smiling 来源: PHP粉丝网 添加日期:2018-09-14 13:40:33 浏览: 评论:0
遍历当前目录及子目录,把所有的文件转换编码到UTF-8,代码如下:
- //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);
- }
- }
- }
- }
Tags: 编码 文件 目录
相关文章
- ·php检测文件编码的方法示例(2020-11-21)
- ·php简单判断文本编码的方法(2021-06-14)
- ·php 读取目录所有文件信息dir()(2013-11-12)
- ·php获取当前文件所有执行的函数和类(2013-11-12)
- ·php检查文件是否可读和可写(2013-11-14)
- ·PHP文件操作方法问答 (2013-11-14)
- ·PHP 文件操作概述 (2013-11-14)
- ·php文件操作和获取文件信息数据 (2013-11-14)
- ·PHP开发中文件操作疑难问答(2013-11-27)
- ·php判断文件是否存在file_exists 与 is_file详解(2013-11-29)
- ·PHP 获取文件扩展名的方法(2013-11-29)
- ·PHP中读写文件(2013-11-29)
- ·解决php中file_get_contents 读取大文件返回false问题(2013-12-08)
- ·解决file_get_contents遇到中文文件名无法打开问题(2013-12-08)
- ·PHP操作文件问答(2013-12-08)
- ·php文件操作(2013-12-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)