Encoding and decoding functions $data = "VGhpcyBpcyBhIAptdWx0aS1saW5lIG1lc3NhZ2UK";//Value before decoding
print ($data);
print(base64_decode($data)); //Decoding
?> ;
print("
");
$text = "This is a multi-line message";
print ($text);
print(base64_encode ($text)); //Encoding
?>
http://www.bkjia.com/PHPjc/445148.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445148.htmlTechArticleHTML HEAD TITLE encoding and decoding function/TITLE /HEAD BODY ? $data = "VGhpcyBpcyBhIAptdWx0aS1saW5lIG1lc3NhZ2UK";//before decoding The value of print ($data); print(base64_decode($data)); //Decode...