使用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);
答案 0 :(得分:1)
我认为使用一个包裹卷曲的库本身就已经非常简单了就是矫枉过正。
如果它不支持它,那么库只是一个single.php文件,你可以轻松地在那里添加一行代码,它会支持它。