0

我想通过 php 中的 curl 下载文件也得到它的标题。

// handler
$h = fopen($filePath , 'w');

// curl
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_FILE, $h);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_HEADERFUNCTION, array($this, 'getAllHeaders'));
$a = curl_exec($ch); // return false;
curl_close($ch);
fclose($h);

public function getAllHeaders($ch, $header)
{
    // check for 200 ok
    if (preg_match('/HTTP[\/\.0-9\s\t]+200[\s\t]+OK/i', $header)) {

        // header 200 found
        $this->header200 = true;
    }

    // grab all headers keys and values
    preg_match('/^(?P<key>[a-z0-9\-]+)\:(?P<value>.*)$/i', $header, $matches);

    // cycle
    foreach ($matches as $key => $value) {
        if (!is_numeric($key)) {
            $this->headers[strtolower(trim($key))] = trim($value);
        }
    }

    // headers
    return $this->headers;
}

但我无法获取标题和文件不被下载。我该如何解决。

4

1 回答 1

0

以下约束适用于您不满足的 getAllHeaders():

使用此回调函数时必须写入头数据。返回写入的字节数。

来源:php.net

怎么样:

public function getAllHeaders($ch, $header)
{
    // store header here (how about storing in a field that is an array of headers?)

    return strlen($header);
}
于 2013-01-31T01:40:29.407 回答