php 浏览器URL加密函数urlencode 和rawurlencode函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 浏览器URL加密函数urlencode 和rawurlencode函数相关的知识,希望对你有一定的参考价值。
urlencode 对URL地址进行加密
urldecode 对URL地址进行解密
rawurlencode 对URL地址进行加密
rawurldecode 对URL地址进行解密
两者的唯一区别在于urlencode 会把空格加密为‘+’号,而rawurlencode会把空格加密为‘%20’,
urldecode会把‘%20’解密回空格,而rawurldecode不会把‘+’号解密回为空格。
本文出自 “高山” 博客,谢绝转载!
以上是关于php 浏览器URL加密函数urlencode 和rawurlencode函数的主要内容,如果未能解决你的问题,请参考以下文章