PHP 与 UTF-8

没有一行式解决方案。小心、注意细节,以及一致性。

PHP 中的 UTF-8 糟透了。原谅我的用词。

目前 PHP 在低层次上还不支持 Unicode。有几种方式可以确保 UTF-8 字符串能够被正确处理,
但并不容易,需要深入到 web 应用的所有层面,从 HTML,到 SQL,到 PHP。我们旨在提供一个简洁、
实用的概述。

PHP 层面的 UTF-8

基本的字符串操作,如串接
两个字符串、将字符串赋给变量,并不需要任何针对 UTF-8 的特殊东西。
然而,多数 字符串函数,如 strpos()strlen,就需要特殊的考虑。
这些函数都有一个对应的 mb_* 函数:例如,mb_strpos()mb_strlen()
这些对应的函数统称为多字节字符串函数
这些多字节字符串函数是专门为操作 Unicode 字符串而设计的。

当你操作 Unicode 字符串时,必须使用 mb_* 函数。
例如,如果你使用 substr() 操作一个 UTF-8 字符串,其结果就很可能包含一些乱码。
正确的函数应该是对应的多字节函数, mb_substr()

难的是始终记得使用 mb_* 函数。即使你仅一次忘了,你的 Unicode 字符串在接下来的处理中就可能产生乱码。

并不是所有的字符串函数都有一个对应的 mb_*。如果不存在你想要的那一个,那你就只能自认倒霉了。

此外,在每个 PHP 脚本的顶部(或者在全局包含脚本的顶部)你都应使用 mb_internal_encoding 函数,如果你的脚本会输出到浏览器,那么还得紧跟其后加个mb_http_output() 函数。在每个脚本中显式地定义字符串的编码在以后能为你减少很多令人头疼的事情。

最后,许多操作字符串的 PHP 函数都有一个可选参数让你指定字符编码。
若有该选项, 你应始终显式地指明 UTF-8 编码。
例如,htmlentities() 就有一个字符编码方式选项,在处理这样的字符串时应始终指定 UTF-8。

MySQL 层面的 UTF-8

如果你的 PHP 脚本会访问 MySQL,即使你遵从了前述的注意事项,你的字符串也有可能在数据库中存储为非 UTF-8 字符串。

确保从 PHP 到 MySQL 的字符串为 UTF-8 编码的,确保你的数据库以及数据表均设置为 utf8mb4 字符集,
并且在你的数据库中执行任何其他查询之前先执行 MySQL 查询 set names utf8mb4。这是至关重要的。
示例请查看连接并查询 MySQL 数据库一节内容。

注意你必须使用 utf8mb4 字符集来获得完整的 UTF-8 支持,而不是 utf8 字符集!原因请查看进一步阅读

浏览器层面的 UTF-8

使用 mb_http_output() 函数
来确保你的 PHP 脚本输出 UTF-8 字符串到浏览器。
并且在 HTML 页面的 <head> 标签块中包含 字符集 <meta> 标签块

示例

  1. <?php
  2. // Tell PHP that we're using UTF-8 strings until the end of the script
  3. mb_internal_encoding('UTF-8');
  4.  
  5. // Tell PHP that we'll be outputting UTF-8 to the browser
  6. mb_http_output('UTF-8');
  7.  
  8. // Our UTF-8 test string
  9. $string = 'Aš galiu valgyti stiklą ir jis manęs nežeidžia';
  10.  
  11. // Transform the string in some way with a multibyte function
  12. $string = mb_substr($string, 0, 10);
  13.  
  14. // Connect to a database to store the transformed string
  15. // See the PDO example in this document for more information
  16. // Note the `set names utf8mb4` commmand!
  17. $link = new \PDO( 'mysql:host=your-hostname;dbname=your-db',
  18. 'your-username',
  19. 'your-password',
  20. array(
  21. \PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
  22. \PDO::ATTR_PERSISTENT => false,
  23. \PDO::MYSQL_ATTR_INIT_COMMAND => 'set names utf8mb4'
  24. )
  25. );
  26.  
  27. // Store our transformed string as UTF-8 in our database
  28. // Assume our DB and tables are in the utf8mb4 character set and collation
  29. $handle = $link->prepare('insert into Sentences (Id, Body) values (?, ?)');
  30. $handle->bindValue(1, 1, PDO::PARAM_INT);
  31. $handle->bindValue(2, $string);
  32. $handle->execute();
  33.  
  34. // Retrieve the string we just stored to prove it was stored correctly
  35. $handle = $link->prepare('select * from Sentences where Id = ?');
  36. $handle->bindValue(1, 1, PDO::PARAM_INT);
  37. $handle->execute();
  38.  
  39. // Store the result into an object that we'll output later in our HTML
  40. $result = $handle->fetchAll(\PDO::FETCH_OBJ);
  41. ?><!doctype html>
  42. <html>
  43. <head>
  44. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  45. <title>UTF-8 test page</title>
  46. </head>
  47. <body>
  48. <?php
  49. foreach($result as $row){
  50. print($row->Body); // This should correctly output our transformed UTF-8 string to the browser
  51. }
  52. ?>
  53. </body>
  54. </html>

进一步阅读