Home  >  Article  >  Backend Development  >  PHP pop-up file download principle code_PHP tutorial

PHP pop-up file download principle code_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:19:50963browse

PHP pop-up file download principle code

/**
 * @author      default7<default7@zbphp.com>
 * @description 演示PHP弹出下载的原理
 *
 * @param $file_name
 */
function downFile($file_name)
{
    $file_path = "/tmp/" . $file_name;
    $buffer = 102400; //一次返回102400个字节
    if (!file_exists($file_path)) {
        echo "<script type=&#39;text/javascript&#39;> alert(&#39;对不起!该文件不存在或已被删除!&#39;); </script>";

        return;
    }
    $fp = fopen($file_path, "r");
    $file_size = filesize($file_path);
    $file_data = &#39;&#39;;
    while (!feof($fp)) {
        $file_data .= fread($fp, $buffer);
    }
    fclose($fp);

    //Begin writing headers
    header("Pragma: public");
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Cache-Control: public");
    header("Content-Description: File Transfer");
    header("Content-type:application/octet-stream;");
    header("Accept-Ranges:bytes");
    header("Accept-Length:{$file_size}");
    header("Content-Disposition:attachment; filename={$file_name}");
    header("Content-Transfer-Encoding: binary");
    echo $file_data;
}


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/871201.htmlTechArticlePHP pop-up file download principle code/*** @author default7 * @description Demonstrates the principle of PHP pop-up download * * @param $file_name*/function downFile($file_name){ $file_path = "/tmp/...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn