Heim >Backend-Entwicklung >PHP-Tutorial >PHP中iconv函数编码转换乱码解决技巧

PHP中iconv函数编码转换乱码解决技巧

WBOY
WBOYOriginal
2016-06-20 13:04:341250Durchsuche

PHP中iconv函数编码转换乱码解决技巧

iconv函数让PHP读取UTF-8内容更方便了,不过此函数有一个BUG,就是会把汉字截断;

解决办法有一个,就是在在iconv函数第二个参数后加上//IGNORE

该参数的意义是是忽略转换时的错误;

例子如下:

$Result=iconv('UTF-8','GB2312//IGNORE',$Result); //编码转换


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn