where([ id =>$id])->find(); Db::name( imgsubmit )->where([..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP 大文件下載(方式1 不支持斷點續(xù)傳)

發(fā)布時間:2020-07-28 06:21:11 來源:網絡 閱讀:1612 作者:lb沫 欄目:web開發(fā)
 public function download(){

    $id = input('id');
    $item = Db::name('imgsubmit')->where(['id'=>$id])->find();
    Db::name('imgsubmit')->where(['id'=>$id])->update(['status'=>1]);
    $tt = ltrim($item['zip'],'uploads/');
    $path = config('upload_path').DS.$tt;
    $arr = explode('/',$path);
    $iname=$item['username'].'_'.$item['order_no'];
    /*$filename = $arr[count($arr)-1];*/
    $filename=$iname.'.zip';
    //$file  =  fopen($path, "rb");

        if (file_exists($path)) {
         $filesize=filesize($path);
         header('Content-Description:File Transfer');
         header("Content-Type:application/octet-stream");
         header('Content-Transfer-Encoding:binary');
         header("Accept-Ranges: bytes");
         header('Expires:0');
         header('Cache-Control:must-revalidate');
         header('Pragma:public');
         header("Content-Length:".$filesize);
         header("Content-Disposition:attachment;filename=".$filename);
        //以下內容是引用網友的代碼,由于原來的出處找不到了,在此表示萬分感謝和抱歉。
        //打開文件 
        $fp = fopen($path, "rb"); 
        //設置指針位置 
        ob_start();
        fseek($fp,0); 
        //虛幻輸出 
        while (!feof($fp)) { 
            //設置文件最長執(zhí)行時間 
            set_time_limit(0); 
            print (fread($fp, 1024 * 8)); //輸出文件 
            flush(); //輸出緩沖 
            ob_flush(); 
        } 
        fclose($fp); 
        exit ();}else{echo "文件不存在?。?!";die();}

}
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI