文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>php 下载保存文件保存到本地

php 下载保存文件保存到本地

时间:2011-03-30  来源:龙圆

<?php
function downfile()
{

 $filename=realpath("resume.html");
 Header( "Content-type:   application/octet-stream ");
 Header( "Accept-Ranges:   bytes ");
    Header( "Accept-Length: " .filesize($filename));
 Header( "Content-Disposition:   attachment;   filename= 4.html");
 echo file_get_contents($filename);
 readfile($filename);
}
downfile();

?>

 

 

 

<?php

function downfile($fileurl)
{
$filename=$fileurl;
$file   =   fopen($filename, "rb");
Header( "Content-type:   application/octet-stream ");
Header( "Accept-Ranges:   bytes ");
Header( "Content-Disposition:   attachment;   filename= 4.doc");


$contents = "";
while (!feof($file)) {
  $contents .= fread($file, 8192);
}
echo $contents;
fclose($file);

}
$url=$_REQUEST['url'];
$url="http://www.bioonjob.com/bioon758/showdetail7.asp?id=17182";
downfile($url);

?>

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载