php 浏览器URL加密函数urlencode 和rawurlencode函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 浏览器URL加密函数urlencode 和rawurlencode函数相关的知识,希望对你有一定的参考价值。

  1. urlencode 对URL地址进行加密

    urldecode 对URL地址进行解密

  2. rawurlencode 对URL地址进行加密

    rawurldecode 对URL地址进行解密

两者的唯一区别在于urlencode 会把空格加密为‘+’号,而rawurlencode会把空格加密为‘%20’,

urldecode会把‘%20’解密回空格,而rawurldecode不会把‘+’号解密回为空格。

本文出自 “高山” 博客,谢绝转载!

以上是关于php 浏览器URL加密函数urlencode 和rawurlencode函数的主要内容,如果未能解决你的问题,请参考以下文章

php的urlencode()URL编码函数浅析

PHP函数——urlencode() 函数

介绍几个PHP 自带的加密解密函数

php一共有几种加密方式

PHP--------解决网址URL编码问题

php如何用urlencode()我下面所写的这段代码进行中文加密?