Home >Backend Development >PHP Tutorial >php中iconv和mb_convert_encoding有什么区别?

php中iconv和mb_convert_encoding有什么区别?

WBOY
WBOYOriginal
2016-06-06 20:49:361022browse

为什么编码为gb18030的字符串,可以通过iconv转换成utf-8,用mbconvertencoding就不行?编码为gb2312的用mbconvertencoding就可以。

回复内容:

为什么编码为gb18030的字符串,可以通过iconv转换成utf-8,用mbconvertencoding就不行?编码为gb2312的用mbconvertencoding就可以。

mbstring没有gbk/gb18030这个编码名称,改用cp936就好了(其实cp936不能完全覆盖gb18030,但是可以覆盖GBK字符集内的字符,所以一般来说不会有问题)。

iconv和mbstring都是针对多字节字符处理的库,只是底层实现不一样。

Statement:
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
Previous article:imagemagick - php ImagickExceptionNext article:mac apache很慢