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==
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==