php urlencode中文编码与urlencode语法
我写了这个简单的函数,创建一个GET查询的网址()从一个数组,代码如下:
function encode_array($args) { if(!is_array($args)) return false; $c = 0; $out = ''; foreach($args as $name => $value) { if($c++ != 0) $out .= '&'; $out .= urlencode("$name").'='; if(is_array($value)) { $out .= urlencode(serialize($value)); }else{ $out .= urlencode("$value"); } } return $out . " "; }
如果有在$args数组数组,它们将被序列化之前进行了urlencoded,代码如下:
echo encode_array(array('foo' => 'bar')); // foo=bar echo encode_array(array('foo&bar' => 'some=weird/value')); // foo%26bar=some%3Dweird%2Fvalue echo encode_array(array('foo' => 1, 'bar' => 'two')); // foo=1&bar=two echo encode_array(array('args' => array('key' => 'value'))); // args=a%3A1%3A%7Bs%3A3%3A%22key%22%3Bs%3A5%3A%22value%22%3B%7D
我需要一个在PHP函数在JavaScript中做完整的逃生功能相同的工作,我花一些时间不找到它,但findaly我决定写我自己的代码,因此,为了节省时间,代码如下:
function fullescape($in) { $out = ''; for ($i=0;$i我需要为UTF8的编码和解码网址,我想出了这些非常简单fuctions,希望这会有所帮助,代码如下:
function url_encode($string){ return urlencode(utf8_encode($string)); } function url_decode($string){ return utf8_decode(urldecode($string)); }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
如果要使用utf-8的Encode,有两种方法.
一、将文件存为utf-8文件,直接使用urlencode、rawurlencode即可.
二、使用mb_convert_encoding函数.
教程链接:
随意转载~但请保留教程地址★
上一篇: 字符串类数据列类型(参考)_MySQL
下一篇: python 采集中文乱码问题的方法
推荐阅读
-
php urlencode()与urldecode()函数字符编码原理详解
-
php中文汉字与16进制编码转换三种方法
-
php urlencode 与 rawurlencode 教程
-
PHP与MYSQL中UTF8编码的中文排序实例,_PHP教程
-
PHP中文URL编解码(urlencode()rawurlencode()
-
PHP rawurlencode与urlencode函数的深入分析
-
php的urlencode()URL编码函数浅析
-
PHP与MYSQL中UTF8编码的中文排序实例
-
PHP中文URL编解码(urlencode()rawurlencode()
-
php urlencode()与urldecode()函数字符编码原理详解_PHP教程