在php中打开新标签pdf

时间:2014-04-14 00:30:35

标签: php pdf

如何在pdf中添加链接以打开pdf?

我下面的代码不起作用

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;

它只显示下载链接,不生成我要下载的文件。

0 个答案:

没有答案