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