Home >Backend Development >PHP Tutorial >PHP custom urlencode, urldecode function example, urlencodeurldecode_PHP tutorial
This article describes the php custom urlencode, urldecode function examples. Share it with everyone for your reference. The details are as follows:
//配合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); }
I hope this article will be helpful to everyone’s PHP programming design.