base64_decode函数用于解码一个使用base64编码的字符串。它将base64编码的字符串作为参数,并返回其解码后的原始字符串。
例如,以下是一个使用base64_decode函数的示例:
$encoded_string = "SGVsbG8gV29ybGQh"; // base64编码的字符串
$decoded_string = base64_decode($encoded_string);
echo $decoded_string; // 输出:Hello World!
在上面的示例中,我们将一个base64编码的字符串传递给base64_decode函数,并将解码后的原始字符串存储在$decoded_string变量中。最后,我们输出解码后的字符串"Hello World!"。