当前位置:Gxlcms > PHP教程 > PHP强制下载文件方法浅析

PHP强制下载文件方法浅析

时间:2021-07-01 10:21:17 帮助过:29人阅读

  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)读取文件进行下载.

人气教程排行