phpbase64?
1、base64_decode() 函數(shù)在PHP中是解碼的意思、對(duì)使用 MIME base64 編碼的數(shù)據(jù)進(jìn)行解碼。
使用base64_decode()函數(shù)對(duì)簡(jiǎn)單字符串進(jìn)行解碼。
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?>
此示例將顯示:
This is an encoded string
2、與之相反,base64_encode(),使用 base64 對(duì) data 進(jìn)行編碼。
使用base64_encode()函數(shù)對(duì)簡(jiǎn)單字符串進(jìn)行編碼。
$str = 'This is an encoded string';
echo base64_encode($str);
?>
此示例將顯示:
VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==