通过cURL下载文件时出错

时间:2013-02-26 10:45:01

标签: php curl ftp download

我想通过cURL从ftp服务器下载文件。 这是我的功能:

function getFile($remotefolder, $remotefile, $localfile) {
    $url  = "ftp://xxxxx.de/" . $remotefolder . "/" . $remotefile;
    $fp   = fopen($localfile, "w+");

    $handle = curl_init();
    curl_setopt($handle, CURLOPT_URL, $url);
    curl_setopt($handle, CURLOPT_RETURNTRANSFER, 0);
    curl_setopt($handle, CURLOPT_UPLOAD, 0);
    curl_setopt($handle, CURLOPT_FILE, $fp);
    curl_setopt($handle, CURLOPT_USERPWD, "<Username>:<Password>");
    $result = curl_exec($handle);

    $info = curl_getinfo($handle);

    curl_close($handle);
    fclose($fp);

    print_r($info);
}

如果我在电脑上执行该操作,一切正常。但是当我在服务器上运行代码时,它会给我提供以下输出并且文件未被下载:

output server
=============
Array
(
    [url] => ftp://xxxx/xxxx/xxx.log.gz
    [content_type] =>
    [http_code] => 257
    [header_size] => 0
    [request_size] => 0
    [filetime] => -1
    [ssl_verify_result] => 0
    [redirect_count] => 0
    [total_time] => 1.357453
    [namelookup_time] => 0.002011
    [connect_time] => 0.011153
    [pretransfer_time] => 1.357439
    [size_upload] => 0
    [size_download] => 0
    [speed_download] => 0
    [speed_upload] => 0
    [download_content_length] => 0
    [upload_content_length] => 0
    [starttransfer_time] => 0
    [redirect_time] => 0
)

如果您需要进一步的信息,请告诉我。

提前致谢,

丹尼斯

2 个答案:

答案 0 :(得分:0)

查看您的http_code响应,257是“PATHNAME”创建的代码,这可能意味着该文件不存在,或者您的路径可能不正确。

使用您知道存在的其他网址对其进行测试。

答案 1 :(得分:0)

尝试切换参数的顺序。这是我在我的一个类中使用的,它依赖于位于FTP服务器上的文件:

$fh = fopen('downloads/' . self::ZIP, 'w');
$ch = curl_init(self::FTP . self::PATH . '/' . self::ZIP);

curl_setopt($ch, CURLOPT_USERPWD, self::USERNAME . ':' . self::PASSWORD);
curl_setopt($ch, CURLOPT_FILE, $fh);

curl_exec($ch);
curl_close($ch);
fclose($fh);