首頁 >後端開發 >php教程 >PHP強制下載檔案方法淺析

PHP強制下載檔案方法淺析

WBOY
WBOY原創
2016-07-25 08:54:49956瀏覽
  1. $filename = "test.txt";
  2. header ("Content-Type: application/force-download");
  3. header ('Content-Disposition: attachment;filename="'.$filename.'"');
  4. readfile ($filename);
复制代码

如此便可以实现文件直接下载而非打开。

原理分析: 1,header ("Content-Type: application/force-download"); //强制下载; 2,header ('Content-Disposition: attachment;filename="'.$filename.'"'); //实现文件下载.最后readfile($filename)读取文件进行下载.



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