我在 php 文档中使用以下代码来强制下载 pdf 表单,因为只有在本地机器上而不是在线提交后才能提交。
它可以正常下载文件,但会损坏它。我无法再打开 pdf 文档。
<?php
$file_name = 'costumer.pdf';
$file_url = 'http://www.lopezi.com/forms/' . $file_name;
header('Content-Type: application/pdf');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"".$file_name."\"");
readfile($file_url);
?>