当前位置:首页 > PHP教程 > php函数 > 列表

php强制文件下载而非在浏览器打开的自定义函数分享

发布:smiling 来源: PHP粉丝网  添加日期:2020-12-08 16:52:51 浏览: 评论:0 

这篇文章主要介绍了php强制文件下载而非在浏览器打开的自定义函数分享,需要的朋友可以参考下。

有时我们希望如图片、文本文档、网页、mp3、pdf等内容,当点击对应链接时直接下载,而不是在网页上显示,那么就需要强制设置header头信息。以下为一段不会产生乱码的php函数实现代码,其他程序语言也可参考之编写实现,代码如下:

  1. /** 
  2.  * Downloader 
  3.  * 
  4.  * @param $archivo 
  5.  *  path al archivo 
  6.  * @param $downloadfilename 
  7.  *  (null|string) el nombre que queres usar para el archivo que se va a descargar. 
  8.  *  (si no lo especificas usa el nombre actual del archivo) 
  9.  * 
  10.  * @return file stream 
  11.  */ 
  12. function download_file($archivo$downloadfilename = null) { 
  13.     if (file_exists($archivo)) { 
  14.         $downloadfilename = $downloadfilename !== null ? $downloadfilename : basename($archivo); 
  15.         header('Content-Description: File Transfer'); 
  16.         header('Content-Type: application/octet-stream'); 
  17.         header('Content-Disposition: attachment; filename=' . $downloadfilename); 
  18.         header('Content-Transfer-Encoding: binary'); 
  19.         header('Expires: 0'); 
  20.         header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 
  21.         header('Pragma: public'); 
  22.         header('Content-Length: ' . filesize($archivo)); 
  23.  
  24.         ob_clean(); 
  25.         flush(); 
  26.         readfile($archivo); 
  27.         exit
  28.     } 
  29.  

Tags: php强制文件下载

分享到: