這篇文章主要為大家詳細介紹了php強制下載檔案函數,具有一定的參考價值,有興趣的小夥伴們可以參考一下
具體內容如下
public function down() { $id = $this->_get('id'); $M = M("downloads"); $data=$M->where("id=$id and status=1")->find(); !$data && exit; $filename = iconv('UTF-8','GBK',$data['filename']); $savename = $data['savename']; $myfile = $data[url] ? $data[url] : 'Uploads/file/'.$savename; if(file_exists($myfile)){ $M->where("id=$id")->setInc('downloads'); $file = @ fopen($myfile, "r"); header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=" .$filename ); while (!feof($file)) { echo fread($file, 50000); } fclose($file); exit; }else{ echo '文件不存在!'; } }
總結:以上就是本篇的全部內容,希望對大家的學習有所幫助。
相關推薦:
以上是php實作強制下載檔案函數的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!