"/> ">
Home > php教程 > PHP源码 > php url地址栏传中文值乱码问题与解决方法

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

WBOY
Release: 2016-06-08 17:26:41
Original
1431 people have browsed it
<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 ~]#

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template