PHP在设置内容类型头之前回显?

我有以下PHP代码:

function download_file($file, $description=null, $filename=false){
    $filename = $filename || basename($file);
    ob_start();
    if(is_string($description)){
        $description = preg_replace("/$1/", $filename, $description);
        echo $description;
    }
    sleep(2);
    header('Content-Type: '.$this->file_mimetype($file));
    header("Content-Transfer-Encoding: Binary"); 
    header("Content-disposition: attachment; filename="" . basename($file) . """); 
    readfile($file);
    header("Content-Type: text/html");
    ob_end_flush();
}
download_file("https://raw.githubusercontent.com/Gethis/ED/master/easydevop.class.php", "Downloading easydevop.class.php");

问题在于它没有在下载之前回显“下载easydevop.class.php”。 我也试过在所有标题后回应它,但那也不起作用。 请帮忙吗?

正如你所看到的,我确实使用了ob_start()ob_end_flush()


您不能使用“回显”(显示HTML内容)并同时向用户发送文件。 您可以先显示HTML页面,然后使用HTML重定向将用户重定向到该文件

<META HTTP-EQUIV="REFRESH" CONTENT="0;URL=http://url.to/file/or_script/that_send_file/">

或JavaScript重定向如何使用Javascript重定向?


正如我已经提到的,下载文件时不能显示回显。 当你下载文件时,你可以下载文件,仅此而已。

但是,使用JavaScript,您可以在开始下载之前显示消息。 这是测试脚本:

<?php
if (isset($_GET['id'])) { 
    $file = 'testfile.txt';
    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));
    readfile($file);
    exit;         
}
?>

<!DOCTYPE html>
<html>
<head>
       <meta charset="utf-8" />
</head>
<body>

  <script type="text/javascript">
  function showDownload(message) {
       document.getElementById("hidden").innerHTML  = message;
       document.getElementById("link1").style.display = 'none'; // you can even hide download link if you want
  }
  </script>

<div id="hidden"></div>
<a href="download.php?id=1" onclick="showDownload('You are downloading file id = 1'); return true;" id="link1">Download</a>
</body>
</html>
链接地址: http://www.djcxy.com/p/34735.html

上一篇: PHP echo before setting content type header?

下一篇: Javascript code redirect to a division on the same page