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

ftp数据写入本地

时间:2015-03-10 10:10:10      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

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


        $contents = "";
        
        while (!feof($file)) {
        
          $contents .= fread($file, 8192);
          
        }
        
        echo $contents;
        
        fclose($file);
        
    }
    
    $url="http://luntantest.21eedu.com/portal.php";
    
    downfile($url);

 

ftp数据写入本地

标签:

原文地址:http://www.cnblogs.com/manthilam/p/4325180.html

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