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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 14:57:15
Original
1173 people have browsed it

//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('你好!美女!'); ? /////////////////////////////////////...
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