首页 > php开发 > php url地址栏传中文值乱码问题与解决方法

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

//方法一,使用urldecode解码 
<?php 
$url = 'aaa.php?region='.urldecode("四川省"); 
?>
<a href="<?php echo $url;?>">aaa </a> 
//方法二base64_encode 
<?php
$test="四川省"; 
$test1=base64_encode($test); 
echo '<a href="www.phprm.com?region=$test1">aaa </a>'; 
?>
//另一页面使用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 ~]#


本文地址:http://www.phprm.com/develop/fs4350.html

转载随意,但请附上文章地址:-)

标签:php url地址栏 中文值乱码

相关文章

发表留言