2011-03-03 135 views

回答

1

只需设置正确的标题信息。 PHP文件应该看起来像这样。

<? 
    header('Content-disposition: attachment; filename=huge_document.pdf'); 
    header('Content-type: application/pdf'); 
    readfile('huge_document.pdf'); 
?> 

这里描绘

http://webdesign.about.com/od/php/ht/force_download.htm

问候

相关问题