日日摸夜夜添夜夜添aa,亚洲一区二区在线视频,国产精品入口在线看麻豆,久久久久久久99精品免费观看

php實現下載download

程序猿 2021-02-09 22:48:12 1996瀏覽 加載中
function download($file_sub_path, $file_name)
    {
        //用以解決中文不能顯示出來的問題
        //$file_name=iconv("utf-8","gb2312",$file_name);
        $file_sub_path = $file_sub_path;
        $file_path = $file_sub_path . $file_name;
        $file_path = str_replace("'", "", $file_path);
        //首先要判斷給定的文件存在與否
        if (!file_exists($file_path)) {
            echo "沒有該文件";
            return;
        }
        $fp = fopen($file_path, "r");
        $file_size = filesize($file_path);
        //下載文件需要用到的頭
        Header("Content-type: application/octet-stream");
        Header("Accept-Ranges: bytes");
        Header("Accept-Length:" . $file_size);
        Header("Content-Disposition: attachment; filename=" . $file_name);
        $buffer = 1024;
        $file_count = 0;

        //一下兩行防止(格式未知 數據已被損壞)
        ob_clean();
        flush();
        //向瀏覽器返回數據
        while (!feof($fp) && $file_count < $file_size) {
            $file_con = fread($fp, $buffer);
            $file_count += $buffer;
            echo $file_con;
        }
        fclose($fp);
    }


標簽:
最后修改:2025-04-25 18:18:03

非特殊說明,本博所有文章均為博主原創。