Maison > Article > développement back-end > Comment convertir php gbk en utf
Comment convertir php gbk en utf : créez d'abord un exemple de fichier PHP ; puis utilisez la méthode "iconv('GB2312', 'UTF-8', $str);" UTF8 suffit.
Recommandé : "Tutoriel vidéo PHP"
Conversion mutuelle php utf8 et gbk
utf8 vers gbk
<?php header("Content-type:text/html;charset=UTF-8"); echo $str= '你好,这里是utf8转gbk!'; echo '<br />'; echo iconv("UTF-8","gbk//TRANSLIT",$str); //将字符串的编码从UTF-8转到GB2312
gbk vers utf8
<?php header("Content-type:text/html;charset=GB2312"); echo $str= '你好,这里是gbk转utf8!'; echo '<br />'; echo iconv('GB2312', 'UTF-8', $str); //将字符串的编码从GB2312转到UTF-8
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!