我尝试/尝试的内容
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
变量,因为此函数是类的一部分,这些变量表示类中包含的变量。
答案 0 :(得分: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);
}
?>
答案 1 :(得分:-1)
听起来你正试图用curl做一个FTP或wget类型的函数。不确定卷曲的效果如何。替代方案:
对于PHP中的ftp:
http://php.net/manual/en/book.ftp.php
对于wget类似PHP的功能,你可以尝试
的file_get_contents($ URL)