php透過修改header強制圖片下載的程式碼

WBOY
發布: 2016-07-25 08:45:46
原創
1018 人瀏覽過
  1. unction downloadFile($file){
  2. $file_name = $file;
  3. $mime = 'application/force-download';
  4. header('Pragma: public'); // required
  5. header('Expires: 0'); // no cache
  6. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  7. header('Cache-Control: private',false);
  8. header('Content-Type: '.$mime);
  9. header('Content-Disposition: attachment; filename="'.basename($file_name).'"');
  10. header('Content-Transfer-Encoding: binary');
  11. header('Connection: close');
  12. readfile($file_name); // push it out
  13. exit();
  14. }
复制代码

php,標頭


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板