我想将文件远程下载到服务器而不是计算机

时间:2018-01-29 18:22:34

标签: php

我正在使用PDFcrowd API并在我的代码中实现。

它为我生成PDF,但它将文件下载到计算机,我希望它在本地存储。

到目前为止我的代码:

// convert a web page and store the generated PDF into a $pdf variable
$pdf = $client->convertURI($url);

// set HTTP response headers
header("Content-Type: application/pdf");
header("Cache-Control: max-age=0");
header("Accept-Ranges: none");
header("Content-Disposition: attachment; filename=\"".$pdfName."\"");

echo $pdf;

0 个答案:

没有答案