URL 函数
PHP Manual

base64_decode

(PHP 4, PHP 5)

base64_decode对使用 MIME base64 编码的数据进行解码

说明

string base64_decode ( string $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

参见


URL 函数
PHP Manual