php中的mb_detect_encoding函数原理是什么

WBOY
Release: 2016-06-06 20:41:21
Original
1385 people have browsed it

php中的mb_detect_encoding可以根据输入的字符串判断它到底属于哪种编码,这种判断是如何进行的,utf-8和asc的宽度都不一样,而且前者还是变长的,它如何判断多出来的那个字节到底是属于下一个字的还是这个字最后一个字节

回复内容:

php中的mb_detect_encoding可以根据输入的字符串判断它到底属于哪种编码,这种判断是如何进行的,utf-8和asc的宽度都不一样,而且前者还是变长的,它如何判断多出来的那个字节到底是属于下一个字的还是这个字最后一个字节

与其说utf-8ascii区别,不如说如何判断 ascii和非ascii
ascii最大是127,判断时,只要这个字节大于127,也就是7f,就可以认定是这个字节属于多字节编码。不论是GBK还是UTF-8 都是兼容ascii
1. utf-8 每个字的第一个字节,有表示这个字总共有多少个字节。所有变长的数据类型基本是这么实现的, 比如数据库的varchar也是有多出来的字节保存长度,就不会误读。
2. GBK是等宽双字节的,只要这个字节不是ascii字符,就把它和下一个读在一起就OK 了
3. 至于如何猜测 utf-8gbk,我也不了解。猜测应该是通过一些算法,去匹配编码规律或码表吧,关于这个可以参考:http://blog.csdn.net/ecjtuync/article/details/1774429

Related labels:
php
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