当前位置:编程学习 > php >>

php转换编码类似asp的server.urlencode函数是urlencode

在asp里面转换编码一般就是 server.urlencode

PHP中编码解码urlencode()、urldecode()、rawurlencode()、rawurldecode()

phpurlfirefoxgooglehtml浏览器
在PHP中有urlencode()、urldecode()、rawurlencode()、rawurldecode()这些函数来解决网页URL编码解码问题。

在ASP的时候URL编码解码很是恼火,Server.urlencode不太好用,遇到utf-8编码的地址更是麻烦。你要获取百度、Google点击到网站的网址链接中的关键字,要写上一堆自定义函数来得到urldecode的效果。

摘录一篇关于PHP urlencode()函数的文章,对PHP处理URL作全面了解,文章来自373ren排行13,感谢。

理解urlencode:

urlencode: 是指针对网页url中的中文字符的一种编码转化方式,最常见的就是Baidu、Google等搜索引擎中输入中文查询时候,生成经过 Encode过的网页URL。urlencode的方式一般有两种一种是传统的基于GB2312的Encode(Baidu、Yisou等使用),一种是 基于utf-8的Encode(Google,Yahoo等使用)。本工具分别实现两种方式的Encode与Decode。

中文 -> GB2312的Encode -> %D6%D0%CE%C4
中文 -> utf-8的Encode -> %E4%B8%AD%E6%96%87

Html中的urlencode:

编码为GB2312的html文件中:
http://www.zhaoxi.net/中文.rar -> 浏览器自动转换为 -> http://www.zhaoxi.net/%D6%D0%CE%C4.rar
注意:Firefox对GB2312的Encode的中文URL支持不好,因为它默认是utf-8编码发送URL的,但是ftp://协议可以,应该算是Firefox一个bug。

编码为utf-8的html文件中:
http://www.zhaoxi.org/中文.rar -> 浏览器自动转换为 -> http://www.zhaoxi.org/%E4%B8%AD%E6%96%87.rar

PHP中的urlencode:

<?php
//GB2312的Encode
echo urlencode("中文-_. ")."/n"; //%D6%D0%CE%C4-_.+
echo urldecode("%D6%D0%CE%C4-_. ")."/n"; //中文-_.
echo rawurlencode("中文-_. ")."/n"; //%D6%D0%CE%C4-_.%20
echo rawurldecode("%D6%D0%CE%C4-_. ")."/n"; //中文-_.
?>

除了 -_. 之外的所有非字母数字字符都将被替换成百分号(%)后跟两位十六进制数。

urlencode和rawurlencode的区别:

urlencode 将空格则编码为加号(+)
rawurlencode 将空格则编码为加号(%20)

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,