Home  >  Article  >  php教程  >  PHP url 加密解密函数代码

PHP url 加密解密函数代码

WBOY
WBOYOriginal
2016-06-13 12:06:161124browse

复制代码 代码如下:


$returnUrl = rawurlencode(base64_encode($returnUrl)); //编码

$returnUrl = parse_str(base64_decode($returnUrl));//解码 或者
$returnUrl = base64_decode($returnUrl);//解码

//或者

//不知道为何, 上面第一种解码方式返回的是null, 求解
$returnUrl = base64_encode($returnUrl); //编码
$returnUrl = base64_decode($returnUrl);//解码


这是一种方式,但是是最安全的,因为只要知道这个原理就可以解开,不过你的要求不高这样就可以了.

如果要很安全的那就要用专门的加密类了,嘻嘻.
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