我正在使用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;