(PHP 4, PHP 5)
base64_decode — 对使用 MIME base64 编码的数据进行解码
$encoded_data
)
base64_decode() 对
encoded_data
进行解码,返回原始数据,失败则返回
FALSE
。返回的数据可能是二进制的。
Example #1 base64_decode() 示例
<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?>
此示例将显示:
This is an encoded string
参见 base64_encode() 和 » RFC 2045 的 6.8 章节。
data
The encoded data.
strict
Returns FALSE
if input contains character from outside the base64
alphabet.
Returns the original data 或者在失败时返回 FALSE
. The returned data may be
binary.
版本 | 说明 |
---|---|
5.2.0 | strict added |
Example #2 base64_decode() example
<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?>
以上例程会输出:
This is an encoded string