<button id="g80sy"></button>
  • <abbr id="g80sy"></abbr>
  • <button id="g80sy"></button>
    <rt id="g80sy"><delect id="g80sy"></delect></rt>
  • php實現(xiàn)下載download

    程序猿 2021-02-09 22:48:12 2093瀏覽 加載中
    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;
    
            //一下兩行防止(格式未知 數(shù)據(jù)已被損壞)
            ob_clean();
            flush();
            //向瀏覽器返回數(shù)據(jù)
            while (!feof($fp) && $file_count < $file_size) {
                $file_con = fread($fp, $buffer);
                $file_count += $buffer;
                echo $file_con;
            }
            fclose($fp);
        }


    標(biāo)簽:
    最后修改:2025-07-03 13:13:05

    非特殊說明,本博所有文章均為博主原創(chuàng)。

    主站蜘蛛池模板: 大冶市| 正镶白旗| 芮城县| 廊坊市| 大港区| 山西省| 岗巴县| 黄石市| 武陟县| 灵璧县| 砚山县| 沁阳市| 图木舒克市| 西昌市| 平安县| 汾西县| 嘉荫县| 湄潭县| 江城| 五台县| 玉门市| 景德镇市| 谷城县| 阿城市| 驻马店市| 安陆市| 东宁县| 渝中区| 甘孜县| 山阳县| 文安县| 延吉市| 辰溪县| 定陶县| 全南县| 安徽省| 苗栗县| 连州市| 鄄城县| 吴江市| 科技|