如何在浏览器直接下载文件而不输出

本文介绍了一个PHP中的实用函数,用于实现文件的强制下载功能。该函数可以处理多种情况,包括直接从内存中下载数据或者从文件系统中读取文件进行下载,并能够智能地设置MIME类型。此外,还特别提到了针对Android 2.1及更早版本浏览器的兼容性处理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

function force_download($filename = '', $data = '', $set_mime = FALSE)
   {
      if ($filename === '' OR $data === '')
      {
         return;
      }
      elseif ($data === NULL)
      {
         if ( ! @is_file($filename) OR ($filesize = @filesize($filename)) === FALSE)
         {
            return;
         }

         $filepath = $filename;
         $filename = explode('/', str_replace(DIRECTORY_SEPARATOR, '/', $filename));
         $filename = end($filename);
      }
      else
      {
         $filesize = strlen($data);
      }

      // Set the default MIME type to send
      $mime = 'application/octet-stream';

      $x = explode('.', $filename);
      $extension = end($x);

      if ($set_mime === TRUE)
      {
         if (count($x) === 1 OR $extension === '')
         {
            /* If we're going to detect the MIME type,
             * we'll need a file extension.
             */
            return;
         }

         // Load the mime types
         $mimes =& get_mimes();

         // Only change the default MIME if we can find one
         if (isset($mimes[$extension]))
         {
            $mime = is_array($mimes[$extension]) ? $mimes[$extension][0] : $mimes[$extension];
         }
      }

      /* It was reported that browsers on Android 2.1 (and possibly older as well)
       * need to have the filename extension upper-cased in order to be able to
       * download it.
       *
       * Reference: http://digiblog.de/2011/04/19/android-and-the-download-file-headers/
       */
      if (count($x) !== 1 && isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/Android\s(1|2\.[01])/', $_SERVER['HTTP_USER_AGENT']))
      {
         $x[count($x) - 1] = strtoupper($extension);
         $filename = implode('.', $x);
      }

      if ($data === NULL && ($fp = @fopen($filepath, 'rb')) === FALSE)
      {
         return;
      }

      // Clean output buffer
      if (ob_get_level() !== 0 && @ob_end_clean() === FALSE)
      {
         @ob_clean();
      }

      // Generate the server headers
      header('Content-Type: '.$mime);
      header('Content-Disposition: attachment; filename="'.$filename.'"');
      header('Expires: 0');
      header('Content-Transfer-Encoding: binary');
      header('Content-Length: '.$filesize);
      header('Cache-Control: private, no-transform, no-store, must-revalidate');

      // If we have raw data - just dump it
      if ($data !== NULL)
      {
         exit($data);
      }

      // Flush 1MB chunks of data
      while ( ! feof($fp) && ($data = fread($fp, 1048576)) !== FALSE)
      {
         echo $data;
      }

      fclose($fp);
      exit;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值