PHP + PDF,如何使用 curl 保存下载的 PDF?
Posted
技术标签:
【中文标题】PHP + PDF,如何使用 curl 保存下载的 PDF?【英文标题】:PHP + PDF, how to save a downloaded PDF using curl? 【发布时间】:2013-04-09 08:45:20 【问题描述】:欢迎
我在将下载的 pdf 保存在页面上时遇到了一点问题。要下载 pdf,我使用 Curl:
$CurlConnect = curl_init();
curl_setopt($CurlConnect, CURLOPT_URL, 'http://website.com/invoices/download/1');
curl_setopt($CurlConnect, CURLOPT_POST, 1);
curl_setopt($CurlConnect, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($CurlConnect, CURLOPT_POSTFIELDS, $request);
curl_setopt($CurlConnect, CURLOPT_USERPWD, $login.':'.$password);
$Result = curl_exec($CurlConnect);
现在在 $Result(string) 我有所有 PDF 文件内容。现在开始我的问题。我想保存下载的pdf:
header('Cache-Control: public');
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="new.pdf"');
header('Content-Length: '.filesize($Result));
readfile($Result);
不幸的是,当我保存或打开一个新的 PDF 文件时,我得到一个空白文档。也许问题出在以下几行:
header('Content-Length: '.filesize($Result));
readfile($Result);
不幸的是,我不知道如何更改它们以使其正常工作......我请求您的帮助。谢谢
【问题讨论】:
你为什么不用php.net/manual/en/function.pdf-save.php 我认为您的代码中出现了一些错误。将您的代码包装在一个 try-catch 块中并添加一些调试步骤。 我没有测试,但我认为filesize()
和readfile()
你需要一个真实的文件路径而不是字符串的内容。
也可以试试code.google.com/p/dompdf/wiki/Usage
【参考方案1】:
filesize 和 readfile 都接受文件作为参数。您提供的是字符串而不是文件。
请试试这个。
$CurlConnect = curl_init();
curl_setopt($CurlConnect, CURLOPT_URL, 'http://website.com/invoices/download/1');
curl_setopt($CurlConnect, CURLOPT_POST, 1);
curl_setopt($CurlConnect, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($CurlConnect, CURLOPT_POSTFIELDS, $request);
curl_setopt($CurlConnect, CURLOPT_USERPWD, $login.':'.$password);
$Result = curl_exec($CurlConnect);
header('Cache-Control: public');
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="new.pdf"');
header('Content-Length: '.strlen($Result));
echo $Result;
【讨论】:
【参考方案2】:也许:
// ...
$Result = curl_exec($CurlConnect);
$file = 'file.pdf';
$fileName = 'fileName.pdf';
file_put_contents($file, $Result);
比:
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
readfile($file);
希望我能帮上忙!
【讨论】:
以上是关于PHP + PDF,如何使用 curl 保存下载的 PDF?的主要内容,如果未能解决你的问题,请参考以下文章