PHP 与 UTF-8 的最佳实践

《PHP中的字符串、编码、UTF-8》一文中描述了一些列的基础知识,比较枯燥,现在来说点有用的——PHP 字符串处理的最佳实践,本文是“PHP、字符串、编码、UTF-8”相关知识的第二部分。先说结论——在 PHP 中的各个方面使用 UTF-8编码。

PHP 语言层面是不支持 Unicode字符集的,但是可以通过 UTF-8 编码能处理大部分问题。

最佳实践就是明确知道输入编码(不知道就检测),内部统一转换为 UTF-8 编码,输出编码也统一是 UTF-8编码。

PHP 层面如何处理 UTF-8

当操作 Unicode 字符集的时候,请务必安装 mbstring 扩展,并使用相应的函数代替原生的字符串函数。举个例子,一个文件编码为 UTF-8 的 PHP 代码,假如使用 strlen() 函数是错误的,请使用 mb_strlen() 函数代替。

mbstring 扩展大部分的函数都需要基于一个编码(内部编码)来处理,请务必统一使用 UTF-8 编码,这个大部分可以在 PHP.INI 中配置。

从 PHP 5.6 开始,default_charset 配置可以替换 mbstring.http_input,mbstring.http_output 。
另外一个重要的配置就是 mbstring.language,这个默认值是 Neutral(UTF-8)。

注意文件编码和 mbstring 扩展的内部编码不是同一个概念。

概括的说来:

  • PHP.INI 中涉及到 mbstring 扩展的部分尽量使用 UTF-8。
  • 请用 mbstring 扩展函数代替原生字符串操作函数。
  • 在使用相关函数的时候,请务必了解你操作的字符的编码是什么,在使用对应函数的时候,显示的写上 UTF-8 编码参数,比如 htmlentities() 函数的第三个参数显示写上 UTF-8。

文件 IO 操作 如何处理 UTF-8

这里举个例子,假如你要打开一个文件,但是不知道文件内容是什么编码的,那么如何处理呢?

最佳实践就是,在打开的时候统一转换成 UTF-8,修改内容后就再转回原来的编码并保存到文件。看代码吧:

if ( mb_internal_encoding()!="UTF-8") {
        mb_internal_encoding("UTF-8");
}

$file = "file.txt"; //一个编码为gbk的中文文件
$str= file_get_contents($file);
//不管来源是什么编码,统一显示的时候转换为 UTF-8 if (mb_check_encoding($str,"GBK")) $str = mb_convert_encoding($str,"UTF-8",“GBK”); $str ="修改内容"; $str = mb_convert_encoding($str,$srcbm,"UTF-8"); //原样转回去 file_put_contents($file,$str);

Mysql 和 UTF-8 的最佳实践

这个相对简单,首先保证你的 Mysql 都是 UTF-8。然后 Mysql 客户端连接的时候也保持 UTF-8,具体到 PHP 中,就是 imysql 或者 PDO 扩展连接 Mysql 的时候都设置 UTF-8 作为连接编码,二边保持一致,一般就不会遇到问题。

有兴趣可以看看这篇文章

浏览器和 UTF-8 的最佳实践

这个也比较简单,就是你的输出内容假如是网页,那么你的字符串处理输出最总请保持为 UTF-8 ;同时 PHP.INI 中也明确设定 default_charset 为 UTF-8;HTML 的 Meta Tag 也明确标识为 UTF-8。

现在万事大吉了吗,并没有,虽然服务器和浏览器让用户使用 UTF-8 编码,但是用户的行为并没有约束性,他可能输入的是其他编码的字符,或者上传的文件名是其他编码的字符,那么怎么办呢?可以通过 mb_http_input() 和 mb_check_encoding() 函数来检测用户的编码,然后内部转换为 UTF-8。确保在任何一个层面,最终处理的是 UTF-8 编码。换句话说,需要手段能够知晓你的输入是什么编码的,处理完成后控制输出的编码是 UTF-8。

不建议使用 mbstring.encoding_translation 指令 和 mb_detect_encoding() 函数。折磨我半天。

操作系统和 UTF-8 的最佳实践

由于操作系统的原因,PHP 处理 Unicode 文件名的时候会有不同的处理机制。

在 Linux 中,文件名始终是 UTF-8 编码的,而在中文 Windows 环境下,文件名始终是 GBK 编码的,记住这一点就可以了。

通过例子说明下:

//命令行程序函数,运行在中文版 Windows 10 操作系统 ,文件编码为 UTF-8

function filenameexample() {
    $filename = "测试.txt" ; $gbk_filename = iconv("UTF-8","GBK",$filename); file_put_contents($gbk_filename, "测试"); echo file_get_contents($gbk_filename); } function scandirexample() { $arr = scandir("./tmp"); foreach ($arr as $v) { if ($v == "." || $v =="..") continue ; $filename = iconv( "GBK","UTF-8",$v ) ; $content = file_get_contents("./tmp/" . $v ); } }

假如不想写写兼容 Windows 和 linux 的程序,可以对文件名进行 urlencode 编码,比如:

 function urlencodeexample() {
    $filename = "测试2.txt" ;
    $urlencodefilename = urlencode($filename) ;
    file_put_contents($urlencodefilename, "测试"); echo file_get_contents($urlencodefilename); }

在用 PHP 通过 header() 函数下载文件的时候,也要考虑浏览器和操作系统(大部分人使用的是 Windows),对于 Chrome 来说,输出的文件名编码可以是 UTF-8,Chrome 会自动将文件名转换为 GBK 编码。

而对于低版本的 IE 来说,它继承了操作系统的环境,所以下载文件名假如是中文必须转码为 UTF-8 编码,否则下载的时候用户看到的是乱码文件名。通过代码来说明:

$agent=$_SERVER["HTTP_USER_AGENT"];
if(strpos($agent,'MSIE')!==false { $filename = iconv("UTF-8","GBK","附件.txt"); header("Content-Disposition: attachment; filename=\"$filename\""); }

http://www.cere.cc/editor/attached/file/20200520/20200520225629_7073.html
http://www.cere.cc/editor/attached/file/20200520/20200520225623_6136.html
http://www.cere.cc/editor/attached/file/20200520/20200520225909_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520230101_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225701_2230.html
http://www.cere.cc/editor/attached/file/20200520/20200520225805_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225615_4886.html
http://www.cere.cc/editor/attached/file/20200520/20200520225925_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225549_3636.html
http://www.cere.cc/editor/attached/file/20200520/20200520225725_2230.html
http://www.cere.cc/editor/attached/file/20200520/20200520225957_2855.html
http://www.cere.cc/editor/attached/file/20200520/20200520230029_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225941_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225709_3323.html
http://www.cere.cc/editor/attached/file/20200520/20200520230005_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225605_2698.html
http://www.cere.cc/editor/attached/file/20200520/20200520230021_2698.html
http://www.cere.cc/editor/attached/file/20200520/20200520230037_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225829_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225933_3792.html
http://www.cere.cc/editor/attached/file/20200520/20200520225646_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225821_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225653_3167.html
http://www.cere.cc/editor/attached/file/20200520/20200520225749_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520230013_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225853_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225949_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225813_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225541_4261.html
http://www.cere.cc/editor/attached/file/20200520/20200520230109_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225733_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520230053_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520230045_3480.html
http://www.cere.cc/editor/attached/file/20200520/20200520225845_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225741_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225837_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225557_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225901_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225637_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225917_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225757_3480.html
http://www.cere.cc/editor/attached/file/20200520/20200520225717_2386.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225554_3577.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230001_3249.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230113_3088.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225602_2483.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225627_6075.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225642_2324.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225737_2008.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225809_2006.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230017_3248.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225833_2786.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225634_7793.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225825_2317.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225621_5763.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230010_2311.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230105_3245.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225921_2002.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225722_2165.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225914_2158.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225849_7160.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230041_3402.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225755_2163.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225931_2782.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225658_2167.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225841_2785.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225538_4360.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225729_1696.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230026_2310.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230033_3091.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225650_2792.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225954_2156.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225857_4034.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225706_2167.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225905_2002.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225745_2007.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225612_3264.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225714_2009.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225801_3569.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225946_2156.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230057_3089.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230049_3246.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225817_1693.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225936_4188.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225547_2015.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225782878287.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230193359335.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225859065906.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022550199199.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230013641364.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230073047304.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225882568256.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225921442144.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225771607160.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230068686868.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230068366836.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225741874187.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230076137613.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225812051205.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225794879487.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230068486848.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022590737737.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225816741674.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225937113711.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022570288288.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230031793179.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225759495949.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225637053705.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225564196419.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225674957495.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022570264264.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225646784678.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225932533253.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225635573557.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230079607960.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225865236523.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225617811781.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225830113011.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225913661366.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225631473147.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225569126912.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225874617461.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225977647764.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225614371437.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225835853585.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225954435443.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225614001400.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110041_3737.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110033_3610.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105913_4438.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105601_4069.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105754_4366.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105728_3882.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105621_6253.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105816_3886.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105801_4234.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110049_3684.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105546_3535.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105849_3375.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105736_4024.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110017_6563.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105904_3973.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105841_3352.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105744_4274.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105538_8550.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105857_3186.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105945_4449.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105641_4251.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105553_5204.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105657_4277.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105833_3492.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105611_4228.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105824_4419.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105808_4393.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105936_4661.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105920_4303.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105650_3511.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110025_3626.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110057_3663.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105713_4542.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110001_3949.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110113_3475.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105930_3911.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105721_4269.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110105_3861.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110009_3431.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105705_3277.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105634_8100.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105626_8096.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105953_3450.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230021352135.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225943854385.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225726662666.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225757355735.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225826112611.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225621282128.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230036953695.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225994789478.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230019831983.html
http://www.scjkc.cn/uploadfile/file/20200520/2020052023000728728.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225682258225.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225780798079.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230171327132.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225670977097.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225741314131.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225830743074.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225838523852.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225521152115.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225629802980.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225911941194.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225650045004.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230032273227.html
http://www.scjkc.cn/uploadfile/file/20200520/2020052022570636636.html
http://www.scjkc.cn/uploadfile/file/20200520/2020052022590421421.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230016661666.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225524292429.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225896409640.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225715151515.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225775997599.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225940714071.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225890149014.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225846354635.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225512611261.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225692299229.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225677917791.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225754205420.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225637513751.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230077637763.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225929382938.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230151035103.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225994849484.html

猜你喜欢

转载自www.cnblogs.com/y7y457yrty/p/12934442.html
今日推荐