折雨的天空

博客介绍:本博客当前共有文章【975】篇,总阅读量【5,407,717】次,第一篇博客发表于【2011年04月06日 10时34分】,距今已【5112】天,感谢您的使用!

您的位置:折雨的天空 >php开发> PHP发送文件到浏览器的一个函数

PHP发送文件到浏览器的一个函数

别人讨论的

原文地址:http://pastie.org/3848723

源码如下:

01<?php
02 
03/**
04 * 从 Ruby On Rails 迁移到 PHP 的 send_file() 方法
05 * 参见:http://api.rubyonrails.org/classes/ActionController/DataStreaming.html#method-i-send_file
06 */
07function send_file($path, $options = array()) {
08    if (! is_file($path) || ! is_readable($path)) {
09        throw new Exception("没有找到指定的文件");
10    }
11 
12    if (! isset($options['x_sendfile'])) {
13        $options['x_sendfile'] = TRUE;
14    }
15 
16    if (! isset($options['filename']) && ! isset($options['url_base_filename'])) {
17        $options['filename'] = basename($path);
18    }
19 
20    $defaults = array(
21        'type' => 'application/octet-stream',
22        'disposition' => 'attachment'
23    );
24    $options = array_merge($defaults, $options);
25 
26    foreach (array('type', 'disposition') as $arg) {
27        if (is_null($options[$arg])) {
28            throw new InvalidArgumentException("{$arg} option required");
29        }
30    }
31 
32    $disposition = $options['disposition'];
33    if (isset($options['filename'])) {
34        if (preg_match("/MSIE/", $_SERVER["HTTP_USER_AGENT"])) {
35            $encoded_filename = str_replace("+", "%20", urlencode($options['filename']));
36            $disposition .= "; filename=\"{$encoded_filename }\"";
37        } else {
38            $disposition .= "; filename=\"{$options['filename']}\"";
39        }
40    }
41 
42    if (! headers_sent()) {
43        header("Content-Type: {$options['type']}");
44        header("Content-Disposition: {$disposition}");
45        header("Content-Transfer-Encoding: binary");
46    }
47 
48    $x_sendfile_supported = $options['x_sendfile'] && in_array('mod_xsendfile', apache_get_modules());
49    if (! headers_sent() && $x_sendfile_supported) {
50        header("X-Sendfile: {$path}");
51    } else {
52        @readfile($path);
53    }
54}

------------正 文 已 结 束, 感 谢 您 的 阅 读 (折雨的天空)--------------------

转载请注明本文标题和链接:《PHP发送文件到浏览器的一个函数

奖励一下

取消

分享不易,烦请有多多打赏,如您也困难,点击右边关闭即可!

扫码支持
扫码打赏,5元,10元,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

-秒后自动关闭,如已打赏,或者不愿打赏,请点击右上角关闭图标。

发表评论

路人甲 表情
看不清楚?点图切换