欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-30 15:33:37
...
  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. ?>
复制代码