首页  >  文章  >  后端开发  >  php转换文件夹下所有文件编码的方法举例

php转换文件夹下所有文件编码的方法举例

WBOY
WBOY原创
2016-07-25 08:59:13779浏览
  1. /**
  2. * 转换文件夹所有文件的编码
  3. * @param string $filename
  4. * @edit bbs.it-home.org
  5. */
  6. function iconv_file($filename,$input_encoding='gbk',$output_encoding='utf-8')
  7. {
  8. if(file_exists($filename))
  9. {
  10. if(is_dir($filename))
  11. {
  12. foreach (glob("$filename/*") as $key=>$value)
  13. {
  14. iconv_file($value);
  15. }
  16. }
  17. else
  18. {
  19. $contents_before = file_get_contents($filename);
  20. /*$encoding = mb_detect_encoding($contents_before,array('CP936','ASCII','GBK','GB2312','UTF-8'));
  21. echo $encoding;
  22. if($encoding=='UTF-8') mb_detect_encoding函数不工作
  23. {
  24. return;
  25. }*/
  26. $contents_after = iconv($input_encoding,$output_encoding,$contents_before);
  27. file_put_contents($filename, $contents_after);
  28. }
  29. }
  30. else
  31. {
  32. echo '参数错误';
  33. return false;
  34. }
  35. }
  36. iconv_file('./test');
  37. ?>
复制代码


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn