PHP url encryption and decryption function

巴扎黑
Release: 2016-11-21 10:05:53
Original
1198 people have browsed it

PHP url Encryption and decryption function

base64_encode syntax: string base64_decode(string data);
*/

$str='d3d3ljexmwnulm5ldnk7vtu9zlpmzfg='; //Define string
echo base64_decode($str); //www.111cn . net Yiju Tutorial Network //Output decoded content/*

base64_encode syntax: string base64_encode(string data);
*/

$str='www.111cn.net Yiju Tutorial Network'; //Define characters String
echo base64_encode($str); // d3d3ljexmwnulm5ldnk7vtu9zlpmzfg= // Output the encoded content

For more details, please check: http://www.(www.111cn.net)111cn.net/phper/php- function/36589.htm


$returnUrl = rawurlencode(base64_encode($returnUrl)); //Encoding

$returnUrl = parse_str(base64_decode($returnUrl));//Decoding Or
$returnUrl = base64_decode($returnUrl) ;//Decoding

//or

//I don’t know why, the first decoding method above returns null, solve
$returnUrl = base64_encode($returnUrl); //Encoding
$returnUrl = base64_decode($returnUrl );//Decoding

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!