1

我正在尝试将文件下载添加到我的站点以获取音频视频和 pdf 文件我正在使用 php header() 函数,但不是下载输出文件,而是继续下载 php 页面。这是我的代码。

    header('Content-disposition: attachment; 
            Content-type: audio/mpeg; 
            filename=thefile.type');
4

2 回答 2

0

这工作得很好

    if (file_exists("audio/thefile.type"))
    {
         if (FALSE!== ($handler = fopen('thefile.type', 'r')))
            {
             header('Content-Description: File Transfer');
             header('Content-Type: application/octet-stream');
             header('Content-Disposition: attachment; 
                     filename=audio/thefile.type');
             header('Content-Transfer-Encoding: chunked'); //changed to chunked
             header('Expires: 0');
             header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
             header('Pragma: public');
             //header('Content-Length: ' . filesize('thefile.type')); //Remove

             //Send the content in chunks
             while(false !== ($chunk = fread($handler,4096)))
                  {
                    echo $chunk;
                  }
             }
             exit;
    }
    else{

           echo "<h1>Content error</h1><p>The file does not exist!</p>";
         }
于 2013-08-07T04:46:59.790 回答
0

您需要将文件的内容写出来,例如

header('Content-disposition: attachment; 
   Content-type: audio/mpeg; 
   filename=thefile.type');
echo file_get_contents("thefile.type");
于 2013-08-05T17:50:03.130 回答