0

可以使用带有 Curl (Philip Sturgeon) 库的 CURLOPT_FILE 下载文件吗?

现在我正在使用,它可以工作,但我想用 Curl 库来做:

set_time_limit(0);
ini_set('display_errors',true);//Just in case we get some errors, let us know....

$fp = fopen ('/Users/tony/labs/store/'. 'a.mp4', 'w+');//This is the file where we save the information
$ch = curl_init($previewUrl);//Here is the file we are downloading
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);

我想要这样的东西:

$file = fopen($to, 'w');
$this->curl->create($url);
$this->curl->option('file', $file);
$this->curl->execute();
fclose($file);
4

1 回答 1

1

我认为使用一个包装 curl 的库,它本身已经非常简单,只是矫枉过正。

如果它不支持它,该库只是一个 single.php 文件,您可以轻松地在其中添加一行代码,它就会支持它。

于 2012-10-30T16:03:22.867 回答