首頁  >  文章  >  类库下载  >  php下載文件,新增響應頭

php下載文件,新增響應頭

高洛峰
高洛峰原創
2016-10-10 10:47:351448瀏覽

//下載,新增回應頭資訊
header('Content-type:application/octet-stream');
header('Content-Disposition:attachment;filename="'.basename($file).'"') ;
header('Content-Length:'.filesize($file));
readfile($file);

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多