Home >Backend Development >PHP Tutorial >PHP custom urlencode, urldecode function example, urlencodeurldecode_PHP tutorial

PHP custom urlencode, urldecode function example, urlencodeurldecode_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:01:021554browse

php custom urlencode, urldecode function examples, urlencodeurldecode

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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/972634.htmlTechArticlephp custom urlencode, urldecode function example, urlencodeurldecode This example describes php custom urlencode, urldecode function. Share it with everyone for your reference. The details are as follows: /...
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