首页 > 其他 > 详细

ftp数据写入本地

时间:2015-03-10 10:08:43      阅读:327      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!