PHP url encryption and decryption function code

高洛峰
Release: 2023-03-03 18:52:02
Original
1051 people have browsed it

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

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

//或者 

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

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!


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!