- yum install -y enca
-
在文件夹根目录下面创建文件:iconv_shell.sh
里面填写下面的内容:
#!/bin/bash for file in `find ./ -name '*.php'`; do echo "$file" # iconv -f gb2312 -t utf8 -o $file $file enca -L zh_CN -x UTF-8 $file done
- 执行:sh iconv_shell.sh
- 原文:http://www.fancyecommerce.com/2017/04/17/%E6%96%87%E4%BB%B6%E6%89%B9%E9%87%8F%E8%BD%AC%E6%8D%A2%E6%88%90utf-8/