2

我正在尝试使用

get_headers($url)

但我收到警告

get_headers() [function.get-headers]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in

还有其他方法吗?

谢谢。

4

2 回答 2

17

您可以使用curl_getinfo()函数来获取远程文件大小。

 $ch = curl_init('http://www.google.co.in/images/srpr/logo4w.png');

 curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
 curl_setopt($ch, CURLOPT_HEADER, TRUE);
 curl_setopt($ch, CURLOPT_NOBODY, TRUE);

 $data = curl_exec($ch);
 $size = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD);

 curl_close($ch);
 echo $size;
于 2013-08-06T06:57:36.970 回答
9

您必须执行 HEAD 请求。这将告诉服务器您只对 HTTP 标头感兴趣。

stream_context_set_default(
    array(
        'http' => array(
            'method' => 'HEAD'
        )
    )
);
$headers = get_headers('http://example.com');

这将返回一个标题数组。您必须找到具有文件大小(字节数)的内容长度项。

于 2013-08-06T06:52:06.643 回答