PHP不支持unicode意味着什么?

WBOY
Release: 2016-06-06 20:49:05
Original
1585 people have browsed it

PHP官方手册上说:“PHP 只能支持 256 的字符集,因此不支持 Unicode 。” 这是什么意思?为什么就不能支持Unicode?

回复内容:

PHP官方手册上说:“PHP 只能支持 256 的字符集,因此不支持 Unicode 。” 这是什么意思?为什么就不能支持Unicode?

这只是说,PHP的string类型是array of bytes。

PHP是可以正常使用Unicode的。我的经验是:

  • PHP脚本文件本身使用UTF-8字符集。
  • 网页使用utf-8编码。
  • MySQL数据库使用utf8字符集。
  • 各类字符串操作使用Multibyte String系列函数。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!