下载没有标题的文件以首先加载HTML

时间:2018-11-18 14:30:10

标签: php

经过一番搜索和实验,我发现没有不首先加载HTML的加载方法。我要在加载页面后。没有header,不要工作,我不知道如何在没有header的情况下工作。

$download_path = '';
                  $file_to_download = $download_path;
                  header("Expires: 0");
                  header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
                  header("Cache-Control: no-store, no-cache, must-revalidate");
                  header("Cache-Control: post-check=0, pre-check=0", false);
                  header("Pragma: no-cache");  
                  header('Content-Type: application/octet-stream');
                  header('Content-length: '.filesize($file_to_download));
                  header('Content-disposition: attachment; filename='.basename($file_to_download));
                  readfile($file_to_download);

0 个答案:

没有答案