Home >Backend Development >PHP Tutorial >Chinese base64 code conversion code between PHP and JavaScript_PHP tutorial

Chinese base64 code conversion code between PHP and JavaScript_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:57:151166browse

//PHP base64_encode

function str_encode($str){
return base64_encode(iconv('GB18030','UTF-8',$str));
}
echo str_encode('Hello! Beauty!');
?>

/////////////////// ///////////////////////////////////////////////////// //////////////////

Attached is PHP’s base64 encryption and decryption functions!

{echo base64_encode($str)."
"; //Encryption
$ss='Z25pZD0yNSZncGljaT0x';
echo base64_decode($ss); //Decryption
/////////////////////////////////////////////////// //////////////////////////////////////



/ /JavaScript base64_decode

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/364124.htmlTechArticle//PHP base64_encode ?php function str_encode($str){ return base64_encode(iconv('GB18030','UTF-8',$str)); } echo str_encode('你好!美女!'); ? /////////////////////////////////////...
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