我需要在不下载的情况下获取远程文件的大小。我使用此代码,但某些网站的标头不包含 Content-Length:字段。在这种情况下如何获得文件大小?
$ch = curl_init("http://wordpress.org/latest.zip");
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$data = curl_exec($ch);
curl_close($ch);
$contentLength = 'unknown';
if (preg_match('/Content-Length: (\d+)/', $data, $matches)) {
$contentLength = (int)$matches[1];
}
echo $contentLength;
这是echo $ data的结果;
HTTP/1.1 200 OK
Server: nginx
Date: Tue, 10 Apr 2012 11:32:20 GMT
Content-Type: application/zip
Connection: close
Pragma: no-cache
Cache-control: private
Content-Description: File Transfer
Content-Disposition: attachment; filename=wordpress-3.3.1.zip
Content-MD5: d6332c76ec09fdc13db412ca0b024df9
X-nc: EXPIRED luv 139
答案 0 :(得分:0)
如果Content-Length标头不存在,则表示文件大小未知。在您的情况下,您有Content-Disposition标头,这意味着可下载文件是服务器响应的附件(与电子邮件附件相同)。所以这里如果你没有Content-Length标题就无法获得大小。