-1

我尝试/正在尝试的

function download_data($target_document,$outfile_location) 
{
    log_message('info', 'Downloading every page in data set');

    do 
    {   

       $ch = curl_init ($target_document.'apiKey=' . self::$API_KEY);       
       $fp = fopen($outfile_location . "data.zip", "w");

        curl_setopt($ch, CURLOPT_FILE, $fp);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_exec($ch);
        $http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        curl_close($ch);

        fclose($fp);

        $this->http_status = $http_status;

            if($this->http_status != 200) 
            {
                $this->data_retry_count += 1;   
            }

    } while($this->http_status != 200 && $this->data_retry_count < $this->retry_max);

        if($this->http_status == 200) 
        {

            return;

        }

}

使用上面的代码一切都很顺利,除了我得到一个没有内容的压缩(zip)。如果我在浏览器中下载目标文档,它就可以工作。为了获取 zip 文件的内容,我是否必须对 curl 做一些不同的事情?

忽略$this变量,因为此函数是类的一部分,而这些变量代表类中包含的变量。

4

2 回答 2

1

这应该可以解决您的问题。

这将下载 ZIP 而不会为空,这是不久前解决我的问题的方法。

您还应该考虑echo curl_error($ch);进行调试。

<?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); 

}
?>

来源: http ://www.weberdev.com/get_example.php3?ExampleID=4009

于 2012-07-04T03:05:20.360 回答
-1

听起来您正在尝试使用 curl 执行 FTP 或 wget 类型的功能。不确定它与 curl 的效果如何。备择方案:

对于 PHP 中的 ftp:

http://php.net/manual/en/book.ftp.php

对于 PHP 的类似 wget 的功能,您可以尝试

文件获取内容($url)

http://php.net/manual/en/function.file-get-contents.php

于 2012-07-04T02:50:21.397 回答