首頁 > 後端開發 > php教程 > 如何使用curl下載大檔案而不超出記憶體限制?

如何使用curl下載大檔案而不超出記憶體限制?

Barbara Streisand
發布: 2024-12-15 08:42:11
原創
920 人瀏覽過

How to Download Large Files with Curl Without Exceeding Memory Limits?

使用Curl 下載大檔案:讀入記憶體的一種替代方法

問題:如何克服使用Curl 下載大檔案時的記憶體限制curl,它通常會讀入記憶體?

當檔案大小超過伺服器上的可用記憶體時,會出現此問題。更有效的方法是將檔案直接串流到磁碟,完全繞過記憶體。

答案:

<?php
set_time_limit(0);
// Set the path to the target file
$fp = fopen(dirname(__FILE__) . '/localfile.tmp', 'w+');
// Exchange spaces with %20 to ensure compatibility with URLs
$ch = curl_init(str_replace(" ", "%20", $url));
// Extend the timeout value to accommodate large files
curl_setopt($ch, CURLOPT_TIMEOUT, 600);
// Directs curl to write response to file
curl_setopt($ch, CURLOPT_FILE, $fp);
// Automatically follows redirects
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
// Send request and receive response
curl_exec($ch);
curl_close($ch);
fclose($fp);
?>
登入後複製

在此程式碼中,以下修改是關鍵:

  • curl_setopt($ch, CURLOPT_FILE, $fp);指定下載的目標文件,允許直接串流到磁碟。
  • curl_setopt($ch, CURLOPT_TIMEOUT, 600);確保有足夠的時間進行大檔案下載。
  • set_time_limit(0);防止因伺服器逾時而提前終止。

以上是如何使用curl下載大檔案而不超出記憶體限制?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板