首页 > 其他 > 详细

跳出下载文本的对话框

时间:2017-02-06 10:59:23      阅读:110      评论:0      收藏:0      [点我收藏+]
<?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();




?>

 

跳出下载文本的对话框

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!