php自定义urlencode,urldecode函数实例,urlencodeurldecode
程序员文章站
2022-03-29 09:26:48
...
php自定义urlencode,urldecode函数实例,urlencodeurldecode
本文实例讲述了php自定义urlencode,urldecode函数。分享给大家供大家参考。具体如下:
//配合JavaScript的ajaxObject函数, 对字串进行转码. function ajax_encode($str){ $patern = array("/%/","/=/","/&/"); // % 必须是第一个项, 替换是按项的顺序进行的. $rp = array("%25","%26","%3D"); return preg_replace($patern,$rp,$str); } //逆函数 function ajax_decode($str){ $patern = array("/%25/","/%26/","/%3D/"); $rp = array("%","=","&"); return preg_replace($patern,$rp,$str); }
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
php自定义urlencode,urldecode函数实例
-
ASP中实现的URLEncode、URLDecode自定义函数
-
PHP基于自定义函数实现的汉字转拼音功能实例
-
php自定义hash函数实例
-
php urlencode()与urldecode()函数字符编码原理详解_PHP教程
-
PHP urlencode()和urldecode()函数详解
-
smarty自定义函数htmlcheckboxes用法实例_PHP
-
smarty模板引擎中自定义函数的方法_php实例
-
PHP解决网址URL编码问题的函数urlencode()、urldecode()、rawurlencode()、rawurldecode()
-
php自定义hash函数实例,phphash函数