doutu1939 2012-05-09 18:40
浏览 51
已采纳

使用php curl下载并保存gzip文件

I am trying to download a gzip file using curl and php and saving it in a specified location. Below is the code that I am using but everytime it's saving an empty file allthough the gzip file that it's downloading is proper

$file_zip = 'abc.gz'
$fp = fopen("$file_zip", "w"); 
$request = curl_init();
$headers = array('Content-type: application/x-gzip','Connection: Close');
curl_setopt($request, CURLOPT_URL, $url);
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($request, CURLOPT_TIMEOUT, 0);
curl_setopt($request, CURLOPT_CONNECTTIMEOUT,0);
curl_setopt($request, CURLOPT_HTTPHEADER,$headers);
curl_setopt($request, CURLOPT_FAILONERROR, true);
curl_setopt($request, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($request, CURLOPT_AUTOREFERER, true);
curl_setopt($request, CURLOPT_BINARYTRANSFER,true);

curl_setopt($request, CURLOPT_FILE, $fp);

$zipFile = curl_exec($request);
  • 写回答

1条回答 默认 最新

  • douwa0280 2012-05-09 19:32
    关注

    I found a method that downloads a file to a location with cUrl. Hope it helps:

    <?php 
    function get_file1($file, $local_path, $newfilename) 
    { 
        $err_msg = ''; 
        echo "<br>Attempting message download for $file<br>"; 
        $out = fopen($newfilename, 'wb'); 
        if ($out == FALSE){ 
          print "File not opened<br>"; 
          exit; 
        } 
    
        $ch = curl_init(); 
    
        curl_setopt($ch, CURLOPT_FILE, $out); 
        curl_setopt($ch, CURLOPT_HEADER, 0); 
        curl_setopt($ch, CURLOPT_URL, $file); 
    
        curl_exec($ch); 
        echo "<br>Error is : ".curl_error ( $ch); 
    
        curl_close($ch); 
        //fclose($handle); 
    
    }//end function 
    ?>
    

    The source is : http://www.weberdev.com/get_example.php3?ExampleID=4009

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题