首页 > 代码库 > php 浏览器URL加密函数urlencode 和rawurlencode函数

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

  1. urlencode 对URL地址进行加密

    urldecode 对URL地址进行解密

  2. rawurlencode 对URL地址进行加密

    rawurldecode 对URL地址进行解密

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

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

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

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