php文件下载

来源:互联网 发布:怎么联系淘宝卖家 编辑:程序博客网 时间:2024/05/29 03:54
php控制器public function upload(){     $filename = realpath('./files/public/word/sc.doc'); //文件路径及名称,文件名尽量不要使用中文     $name = "**手册.doc"; //指定下载后的文件名     header( "Content-type:  application/octet-stream ");      header( "Accept-Ranges:  bytes ");      header( "Accept-Length: " .filesize($filename));     header( "Content-Disposition:  attachment;  filename= {$name}");      echo file_get_contents($filename); //向浏览器输出信息     readfile($filename); }延伸

realpath('/')    返回磁盘根目录    E:\

realpath('./')    返回根目录  E:\wamp\www

realpath('../')    返回相对程序根目录的上级目录

realpath(dirname(__FILE__))    返回  E:\wamp\www\zb_system\function

realpath(dirname(__FILE__).'/../')  返回 E:\wamp\www\zb_system

realpath(dirname(__FILE__).'/../../')    返回    E:\wamp\www


原创粉丝点击