从Base64字符串下载PDF

时间:2016-01-09 19:36:16

标签: php pdf base64

我的情况(所有用PHP):

我得到的:来自API的Base64编码字符串。

我想要的:点击的链接将此文档下载为PDF。 (我相信它永远是PDF文件)

我试过这个:

    $decoded = base64_decode($base64);
    file_put_contents('invoice.pdf', $decoded);

但是我很失落,在解码之后似乎找不到下载它的方法。

我希望有人可以帮助我,提前谢谢!

2 个答案:

答案 0 :(得分:11)

此处的示例似乎很有用:http://php.net/manual/en/function.readfile.php

在你的情况下:

<?php
$decoded = base64_decode($base64);
$file = 'invoice.pdf';
file_put_contents($file, $decoded);

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="'.basename($file).'"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    readfile($file);
    exit;
}
?>

这应该会强制下载。

答案 1 :(得分:1)

不需要解码base64。您可以发送带有二进制文件的标头。

header('Content-Description: File Transfer');
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename='.$filename);
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . strlen($filedata));
ob_clean();
flush();
echo $filedata;
exit;