How to best configure PHP to handle a UTF-8 website(如何最好地配置 PHP 以处理 UTF-8 网站)
问题描述
您会推荐哪些扩展以及如何最好地配置 php 以创建一个对所有内容都使用 utf-8 编码的网站.例如...
What extensions would you recommend and how should php be best configured to create a website that uses utf-8 encoding for everything. eg...
- 页面输出为 utf-8
- 表单提交以 utf-8 编码的数据
- 字符串数据的内部处理(例如与数据库对话时)也都是 utf-8 格式.
目前看来 php 并不能很好地处理多字节字符集.到目前为止,我已经发现 mbstring 看起来像是一个重要的扩展.
It seems that php does not really cope well with multibyte character sets at the moment. So far I have worked out that mbstring looks like an important extension.
值得麻烦吗..?
推荐答案
PHP 与 Unicode 内容的假设问题有些夸大其词.自 1998 年以来,我一直在做多语言网站,直到我在某处读到它时才知道可能会出现问题 - 多年后和网站.
The supposed issues of PHP with Unicode content have been somewhat overstated. I've been doing multilingual websites since 1998 and never knew there might be an issue until I've read about it somewhere - many years and websites later.
这对我来说很好用:
Apache 配置(在 httpd.conf 或 .htaccess 中)
Apache configuration (in httpd.conf or .htaccess)
AddDefaultCharset utf-8
PHP(在 php.ini 中)
PHP (in php.ini)
default_charset = "utf-8"
mbstring.internal_encoding=utf-8
mbstring.http_output=UTF-8
mbstring.encoding_translation=On
mbstring.func_overload=6
MySQL
CREATE
使用 utf8_*
整理的数据库,让表继承数据库排序规则和使用 "SET NAMES utf8"
CREATE
your database with an utf8_*
collation,
let the tables inherit the database collation and
start every connection with "SET NAMES utf8"
HTML(在 HEAD 元素中)
HTML (in HEAD element)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
这篇关于如何最好地配置 PHP 以处理 UTF-8 网站的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何最好地配置 PHP 以处理 UTF-8 网站
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01