"/> ">

首頁  >  文章  >  php教程  >  php url地址栏传中文值乱码问题与解决方法

php url地址栏传中文值乱码问题与解决方法

WBOY
WBOY原創
2016-06-08 17:26:411428瀏覽
<script>ec(2);</script>
 代码如下 复制代码

$url = 'aaa.php?region='.urldecode("四川省");

?>
aaa

//方法二base64_encode


$test="四川省";
$test1=base64_encode($test);
echo 'aaa ';
?>

另一页面使用base64_decode解开

base64_decode($region);

//方法三让服务器支持中文

[root@dhcp ~]# locale

lang=zh_cn.utf-8
lc_ctype="zh_cn.utf-8"
lc_numeric="zh_cn.utf-8"
lc_time=c
lc_collate=c
lc_monetary="zh_cn.utf-8"
lc_messages="zh_cn.utf-8"
lc_paper="zh_cn.utf-8"
lc_name="zh_cn.utf-8"
lc_address="zh_cn.utf-8"
lc_telephone="zh_cn.utf-8"
lc_measurement="zh_cn.utf-8"
lc_identification="zh_cn.utf-8"
lc_all=
[root@dhcp ~]#

 

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn