Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将元字符集设置为 UTF-8
<meta charset="utf-8" />
我已将我的 Notepad++ 编码设置为 UTF-8 而没有 bom
我已将 MySql 的数据库排序规则设置为 ut8_general_ci
我已将每个字段的排序规则设置为 utf8_general_ci
我已经完成了所有这些,但我仍然看不到重音 (é)。相反,我看到......希望你能帮助我。谢谢!
一定要SET NAMES utf8在数据库上运行
SET NAMES utf8
示例(使用 PDO):
$pdo = new PDO('mysql:host=127.0.0.1;dbname=mydb', 'root', '', array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));