首页 > php教程 > PHP源码 > PHP转换文件夹下所有文件编码

PHP转换文件夹下所有文件编码

PHP中文网
发布: 2016-05-23 09:54:01
原创
1744 人浏览过

php代码

/**
 * 把一个文件夹里的文件全部转码 只能转一次 否则全部变乱码
 * @param string $filename
 */
function iconv_file($filename,$input_encoding='gbk',$output_encoding='utf-8')
{
    if(file_exists($filename))
    {
        if(is_dir($filename))
        {
            foreach (glob("$filename/*") as $key=>$value)
            {
                iconv_file($value);
            }
        }
        else
        {
            $contents_before = file_get_contents($filename);
            /*$encoding = mb_detect_encoding($contents_before,array('CP936','ASCII','GBK','GB2312','UTF-8'));
            echo $encoding;
            if($encoding=='UTF-8')  mb_detect_encoding函数不工作
            {
                return;
            }*/
            $contents_after = iconv($input_encoding,$output_encoding,$contents_before);
            file_put_contents($filename, $contents_after);
        }
    }
    else
    {
        echo '参数错误';
        return false;
    }
}
iconv_file('./common');
登录后复制
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
Python如何统计某一文件夹下文件数量
来自于 1970-01-01 08:00:00
0
0
0
子文件夹的权限被拒绝
来自于 1970-01-01 08:00:00
0
0
0
阴阳历日历转换插件bug讨论
来自于 1970-01-01 08:00:00
0
0
0
在 PHP 中使用 ImageMagick 将 .HEIC 转换为 .JPG
来自于 1970-01-01 08:00:00
0
0
0
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板