PHP URL Encryption decryption function
Base64_encode Syntax: String base64_decode (string data);
*/
$str = ' d3d3ljexmwnulm5ldnk7vtu9zlpmzfg= '; Defining strings
echo Base64_decode ($STR); www.bKjia.c0m Tutorial Net//Output decoded content/*
Base64_encode Syntax: String base64_encode (string data);
*/
$str = ' www.bKjia.c0m A network of tutorials '; Defining strings
echo Base64_encode ($STR); d3d3ljexmwnulm5ldnk7vtu9zlpmzfg=//Output encoded content
For more details please see: PHP tutorial Er/php-function/36589.htm ">http://www.bkjia.c0m/phper/php-function/36589.htm
$RETURNURL = Rawurlencode (Base64_encode ($RETURNURL)); Coding
$RETURNURL = Parse_str (Base64_decode ($RETURNURL));//decoding or
$RETURNURL = Base64_decode ($RETURNURL);//decoding
Or
I do not know why, the first of the above decoding method returned is null, solve
$RETURNURL = Base64_encode ($RETURNURL); Coding
$RETURNURL = Base64_decode ($RETURNURL);//decoding
This is a way, but is the safest, because as long as you know that the principle can be solved, but your request is not high so it is possible.
http://www.bkjia.com/PHPjc/629704.html www.bkjia.com true http://www.bkjia.com/PHPjc/629704.html techarticle PHP URL Cryptographic decryption function Base64_encode syntax: string base64_decode (String data); */$str = ' d3d3ljexmwnulm5ldnk7vtu9zlpmzfg= ';// Defines the string echo base64_decode ($STR); www.111 ...