在php中,中文乱码非常头疼,很麻烦,所以根据在编程的经验,总结以下方法(以utf_8为例):
相关推荐:《php基础教程》
1、php中在头部header设置编码方式
header("Content-type:text/html;charset=utf-8");
2、php中用iconv转码
echo iconv("GB2312","UTF-8",'中文内容');
3、在html中用
Das obige ist der detaillierte Inhalt vonphp如何解决中文乱码. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!