我正在构建一个脚本,将imap放入谷歌邮箱,获取消息,并从正文中提取链接。该链接在通过php打开时,会从外部源开始下载PDF文件。
以下是我需要做的事情:
我已经成功了,我可以启动下载过程并下载文件。但是,每次打开PDF的尝试都会发现文件已损坏,我无法弄清楚原因。这就是我现在正在尝试的。以下内容基于类似主题。
$filename = http://cckk.ca/KE645R26/geico.com_SEO_Domain_Dashboard_20121101_00.pdf
header('Content-Description: File Transfer');
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename="' . basename($filename) . '"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
ob_clean();
flush();
readfile($filename);
exit;
我在想,我传递的文件名可能有问题吗?
注意:此脚本将被设置为每隔几秒在服务器上运行的CRON任务,以便不断从我们自己的邮箱中获取,因此这不会有任何类型用户交互或对用户构成安全风险。
答案 0 :(得分:5)
尝试:
$filename = 'http://cckk.ca/KE645R26/geico.com_SEO_Domain_Dashboard_20121101_00.pdf';
file_put_contents(
'/your/server/path/folder/' . basename($filename), // where to save file
file_get_contents($filename)
);
exit;
答案 1 :(得分:2)
您不能在远程文件上使用filesize()。最有可能的是,该调用的错误显示在文件的开头,从而破坏了它。