1

我想从文件中获取标题。但 CURL 返回值与 get_headers 不同。

不知道为什么。这是结果:

使用 get_headers

Array
(
    [0] => HTTP/1.0 200 OK
    [1] => Content-Type: image/jpeg
    [2] => Last-Modified: Wed, 14 Nov 2012 11:06:07 GMT
    [3] => X-Cache-Status: HIT
    [4] => Expires: Tue, 19 Jan 2038 03:14:07 GMT
    [5] => Cache-Control: max-age=2592000
    [6] => X-Cache: HIT
    [7] => Content-Length: 120185
    [8] => Connection: close
    [9] => Date: Fri, 16 Nov 2012 08:01:15 GMT
    [10] => Server: lighttpd/1.4.26
)

并且 CURL 没有 Content-Type ~> 这就是我想要的

Array
(
    [0] => HTTP/1.1 200 OK
    [1] => Content-Length: 120185
    [2] => Connection: close
    [3] => Date: Fri, 16 Nov 2012 08:01:42 GMT
    [4] => Server: lighttpd/1.4.26
    [5] => 
    [6] => 
)

这是我通过 curl 函数获取的标题

function get_headers_curl($url) 
{ 
    $ch = curl_init(); 

    curl_setopt($ch, CURLOPT_URL,            $url); 
    curl_setopt($ch, CURLOPT_HEADER,         true); 
    curl_setopt($ch, CURLOPT_NOBODY,         true); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
    curl_setopt($ch, CURLOPT_TIMEOUT,        15); 

    $r = curl_exec($ch); 
    $r = split("\n", $r); 
    return $r; 
} 

如果我设置了返回 Content-Type 的 CURL

curl_setopt($ch,CURLOPT_HTTPGET,true);

但它也会返回文件内容(正文),如何仅使用 CURL 而没有文件内容来准确获取文件内容类型?

4

2 回答 2

1

很容易获得 CONTENT_TYPE 或其他 cURL 信息:

<?php
// Create a curl handle
$ch = curl_init('link_to_file');

curl_setopt($ch, CURLOPT_NOBODY, TRUE);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, FALSE);

// Execute
curl_exec($ch);

// Check if any error occured
if (!curl_errno($ch)) {
    var_dump(curl_getinfo($ch, CURLINFO_CONTENT_TYPE));
}

// Close handle
curl_close($ch);

输出:

字符串(10)“图像/JPEG”

于 2012-11-16T09:24:15.833 回答
1

get_headers 正在接收图像的信息,但另一个不是。猜猜你可以检查网址。因为两者必须相同。

于 2012-11-16T08:18:35.943 回答