码迷,mamicode.com
首页 > 其他好文 > 详细

跳出下载文本的对话框

时间:2017-02-06 10:59:53      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:tps   length   color   path   content   att   bytes   php   header   

<?php
function downfile()
{
 $filename=realpath("https://www.baidu.com/"); //文件名
 $date=date("Ymd-H:i:m");
 Header( "Content-type:  application/octet-stream "); 
 Header( "Accept-Ranges:  bytes "); 
Header( "Accept-Length: " .filesize($filename));
 header( "Content-Disposition:  attachment;  filename= {$date}.doc"); 
 echo file_get_contents($filename);
 readfile($filename); 
}
downfile();




?>

 

跳出下载文本的对话框

标签:tps   length   color   path   content   att   bytes   php   header   

原文地址:http://www.cnblogs.com/aliblogs/p/6369254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!