Home  >  Article  >  Backend Development  >  URL网址中乱码处理方法

URL网址中乱码处理方法

WBOY
WBOYOriginal
2016-06-20 13:00:311085browse

最近用php写个程序(UTF8编码)时发现以http get方式发送奇数个汉字到服务器端时会出现乱码,刚开始以为PHP程序或服务配置有问题。

后来检查了半天发现不是,在google中搜索到看到有人说是IE6存在兼容问题,IE7,IE8,FIREFOX,CHROME都没有这个问题。

对于这个问题解决方法很简单了,直接使用urlencode编码进行处理一下即可,注意如果使用的是javascript传递的参数,则使用的是encodeURI函数。

其实这个应该是一个习惯的问题了,对于所有get传递的参数都进行一下urlencode处理,会让程序显得更加健壮,兼容性,可移植性更好。


Statement:
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