URL 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

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 章节。


URL 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程