《PHP實(shí)戰(zhàn):php強(qiáng)制下載文件函數(shù)》要點(diǎn):
本文介紹了PHP實(shí)戰(zhàn):php強(qiáng)制下載文件函數(shù),希望對(duì)您有用。如果有疑問(wèn),可以聯(lián)系我們。
本文實(shí)例為大家分享了php強(qiáng)制下載文件函數(shù),供大家參考,具體內(nèi)容如下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 '文件不存在!'; } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持維易PHP.PHP編程
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.snjht.com/jiaocheng/3991.html