别人讨论的
原文地址:http://pastie.org/3848723
源码如下:
07 | function send_file( $path , $options = array ()) { |
08 | if (! is_file ( $path ) || ! is_readable ( $path )) { |
09 | throw new Exception( "没有找到指定的文件" ); |
12 | if (! isset( $options [ 'x_sendfile' ])) { |
13 | $options [ 'x_sendfile' ] = TRUE; |
16 | if (! isset( $options [ 'filename' ]) && ! isset( $options [ 'url_base_filename' ])) { |
17 | $options [ 'filename' ] = basename ( $path ); |
21 | 'type' => 'application/octet-stream' , |
22 | 'disposition' => 'attachment' |
24 | $options = array_merge ( $defaults , $options ); |
26 | foreach ( array ( 'type' , 'disposition' ) as $arg ) { |
27 | if ( is_null ( $options [ $arg ])) { |
28 | throw new InvalidArgumentException( "{$arg} option required" ); |
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 }\"" ; |
38 | $disposition .= "; filename=\"{$options['filename']}\"" ; |
42 | if (! headers_sent()) { |
43 | header( "Content-Type: {$options['type']}" ); |
44 | header( "Content-Disposition: {$disposition}" ); |
45 | header( "Content-Transfer-Encoding: binary" ); |
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}" ); |
------------正 文 已 结 束, 感 谢 您 的 阅 读 (折雨的天空)--------------------
转载请注明本文标题和链接:《PHP发送文件到浏览器的一个函数》
发表评论