Home  >  Article  >  Backend Development  >  PHP url encryption and decryption function code

PHP url encryption and decryption function code

高洛峰
高洛峰Original
2016-12-21 09:58:401014browse

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

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

//或者 

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

This is a way, but it is the safest, because as long as you know this principle, you can unlock it, but your requirements are not high.

If you want to be very safe, you need to use a special encryption class

For more articles related to PHP url encryption and decryption function codes, please pay attention to the PHP Chinese website!


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