通过php加载pdf文件(慢)

时间:2015-09-22 14:03:48

标签: php

我有一个脚本,我用PHP加载pdf文件,但问题是我注意到加载需要一些时间,而pdf文件不是很重,我的网络连接速度很快,我的代码没有优化足够多的?

这是:

ob_start();
$pdf = $_GET['download_file'];
$urlPDF = "http://domain.com/candidates/".$pdf;
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-disposition: attachment; 
filename='.$urlPDF);
header("Content-Type: application/pdf");
header("Content-Transfer-Encoding: binary");
header('Content-Length: '. filesize($urlPDF));
readfile($urlPDF);
exit;

0 个答案:

没有答案