我想通过 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;
}
但我无法获取标题和文件不被下载。我该如何解决。