PHP cURL,读取远程文件并将内容写入本地文件

2022-08-30 22:35:40

我想连接到远程文件并将远程文件的输出写入本地文件,这是我的函数:

function get_remote_file_to_cache()
{

    $the_site="http://facebook.com";

    $curl = curl_init();
    $fp = fopen("cache/temp_file.txt", "w");
    curl_setopt ($curl, CURLOPT_URL, $the_site);
    curl_setopt($curl, CURLOPT_FILE, $fp);

    curl_setopt($curl,  CURLOPT_RETURNTRANSFER, TRUE);

    curl_exec ($curl);

    $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
    if($httpCode == 404) {
        touch('cache/404_err.txt');
    }else
    {
        touch('cache/'.rand(0, 99999).'--all_good.txt');
    }

    curl_close ($curl);
}

它在“cache”目录中创建了两个文件,但问题是它没有将数据写入“temp_file.txt”,这是为什么呢?


答案 1

实际上,使用fwrite是部分正确的。为了避免大文件的内存溢出问题(超出PHP的最大内存限制),您需要设置一个回调函数来写入文件。

注意:我建议创建一个专门用于处理文件下载和文件句柄等的类,而不是使用全局变量,但出于此示例的目的,下面显示了如何启动和运行。

因此,请执行以下操作:

# setup a global file pointer
$GlobalFileHandle = null;

function saveRemoteFile($url, $filename) {
  global $GlobalFileHandle;

  set_time_limit(0);

  # Open the file for writing...
  $GlobalFileHandle = fopen($filename, 'w+');

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_FILE, $GlobalFileHandle);
  curl_setopt($ch, CURLOPT_HEADER, 0);
  curl_setopt($ch, CURLOPT_USERAGENT, "MY+USER+AGENT"); //Make this valid if possible
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); # optional
  curl_setopt($ch, CURLOPT_TIMEOUT, -1); # optional: -1 = unlimited, 3600 = 1 hour
  curl_setopt($ch, CURLOPT_VERBOSE, false); # Set to true to see all the innards

  # Only if you need to bypass SSL certificate validation
  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

  # Assign a callback function to the CURL Write-Function
  curl_setopt($ch, CURLOPT_WRITEFUNCTION, 'curlWriteFile');

  # Exceute the download - note we DO NOT put the result into a variable!
  curl_exec($ch);

  # Close CURL
  curl_close($ch);

  # Close the file pointer
  fclose($GlobalFileHandle);
}

function curlWriteFile($cp, $data) {
  global $GlobalFileHandle;
  $len = fwrite($GlobalFileHandle, $data);
  return $len;
}

您还可以创建进度回调以显示下载量/速度,但这是另一个示例,因为在输出到 CLI 时可能会很复杂。

从本质上讲,这将获取下载的每个数据,并立即将其转储到文件中,而不是首先将整个文件下载到内存中。

更安全的方式!当然,您必须确保 URL 正确(将空格转换为 %20 等),并且本地文件是可写的。

干杯,詹姆斯。


答案 2

让我们尝试将 GET 请求发送到 :http://facebook.com

$ curl -v http://facebook.com
* Rebuilt URL to: http://facebook.com/
* Hostname was NOT found in DNS cache
*   Trying 69.171.230.5...
* Connected to facebook.com (69.171.230.5) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.35.0
> Host: facebook.com
> Accept: */*
> 
< HTTP/1.1 302 Found
< Location: https://facebook.com/
< Vary: Accept-Encoding
< Content-Type: text/html
< Date: Thu, 03 Sep 2015 16:26:34 GMT
< Connection: keep-alive
< Content-Length: 0
< 
* Connection #0 to host facebook.com left intact

发生了什么事?Facebook似乎将我们从 重定向到 安全 。请注意什么是响应正文长度:http://facebook.comhttps://facebook.com/

Content-Length: 0

这意味着零字节将被写入 。这就是文件保持为空的原因。xxxx--all_good.txt

您的解决方案是完全正确的:

$fp = fopen('file.txt', 'w');
curl_setopt($handle, CURLOPT_FILE, $fp);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);

您需要做的就是将URL更改为。https://facebook.com/

关于其他答案:

  • @JonGauthier:不,以后无需使用fwrite()curl_exec()
  • @doublehelix:不,您不需要将内容复制到文件的简单操作。CURLOPT_WRITEFUNCTION
  • @ScottSaunders:如果文件不存在,则创建空文件。我认为这是OP的意图。touch()

说真的,三个答案,每一个都是无效的?


推荐