this linkからpdfファイルをダウンロードしたいと思います。ページから、毎週の要約を選択し、最初のpdfをダウンロードします。このPDFファイルをPHPを使ってダウンロードするには
PDF週刊概要 - 先週:私は、次のコードを使用していますインサイダー
順は、私がPHPを使用してダウンロードすることができないようだ
<?php
$file="https://www.sedi.ca/sedi/SVTWeeklySummaryACL?name=W1ALLPDFI&locale=en_CA";
if (file_exists($file))
{
if (FALSE!== ($handler = fopen($file, 'r')))
{
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: chunked'); //changed to chunked
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
//header('Content-Length: ' . filesize($file)); //Remove
//Send the content in chunks
while(false !== ($chunk = fread($handler,4096)))
{
echo $chunk;
}
}
exit;
}
echo "<h1>Content error</h1><p>The file does not exist!</p>";
?>
、PDFをダウンロードしてみてください。自分でダウンロードしてポップアップウィンドウを確認できます。助言がありますか?
私はカールも試しましたが、まだダウンロードできません。ファイルサイズはゼロです。
<?php
$file="https://www.sedi.ca/sedi/SVTWeeklySummaryACL?name=W1ALLPDFI&locale=en_CA";
$path = 'c:\download\output.pdf';
$ch = curl_init($file);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
file_put_contents($path, $data);
?>
理由だけでダイレクトにクライアントを指していませんURL?あなたが実際にpdfについて何かを変えているようなものではありません。単にそれをプロキシするだけです。 –
カールは、いつものように論文の日になります –
@MarcB、あなたは私にそれをする方法を教えてくれますか? –