本文操作环境:Windows7系统,PHP7.4版,Dell G3电脑。
如何解决php传递页面参数乱码问题?
php get传值 中文参数 乱码问题的尝试解决:
网站的中文参数是直接传的 例如 /index.php?t=你好
所有页面均为utf-8编码
火狐,firefox下正常 IE下乱码
目前用这种方法暂时解决.
$bm = array('UTF-8','GBK');
$charTest;
foreach($bm as $c){
if( $tag === iconv('UTF-8', $c, iconv($c, 'UTF-8', $tag))){//转换编码后是不是相等
$charTest = $c;
break;
}
}
if($charTest == 'GBK'){
$tag = iconv('GBK', 'UTF-8', $tag);
}