Home  >  Article  >  php教程  >  编码和解码函数

编码和解码函数

WBOY
WBOYOriginal
2016-06-13 11:21:041407browse





编码和解码函数



 $data = "VGhpcyBpcyBhIAptdWx0aS1saW5lIG1lc3NhZ2UK";//解码前的值
 print ($data);
 print(base64_decode($data));      //进行解码
?>

 print("
");
 $text = "这是一个多行信息";
 print ($text);
 print(base64_encode($text));      //编码
?>






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
Previous article:php里 的 四舍五入Next article:php模板smarty