使用curl下载大文件

使用curl下载大文件,第1张

使用curl下载大文件
<?phpset_time_limit(0);//This is the file where we save the    information$fp = fopen (dirname(__FILE__) . '/localfile.tmp', 'w+');//Here is the file we are downloading, replace spaces with %20$ch = curl_init(str_replace(" ","%20",$url));curl_setopt($ch, CURLOPT_TIMEOUT, 50);// write curl response to filecurl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);// get curl responsecurl_exec($ch); curl_close($ch);fclose($fp);?>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5014881.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存