使用cURL和php获取mime类型的外部文件

时间:2010-04-09 20:33:13

标签: php curl mime-types

我使用了mime_content_type()和文件信息,但我从未成功过。我想现在使用cURL与PHP并获取托管在另一个域上的文件的标题然后解压缩&确定类型是否为MP3。 (我认为mime类型的MP3是audio/mpeg

简单地说,我知道但我不知道如何应用它:)

由于

3 个答案:

答案 0 :(得分:42)

PHP curl_getinfo()

<?php
  # the request
  $ch = curl_init('http://www.google.com');
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_exec($ch);

  # get the content type
  echo curl_getinfo($ch, CURLINFO_CONTENT_TYPE);

  # output
  text/html; charset=ISO-8859-1
?>

卷曲

curl -I http://www.google.com

输出

HTTP/1.1 301 Moved Permanently
Location: http://www.google.com/
Content-Type: text/html; charset=UTF-8
Date: Fri, 09 Apr 2010 20:35:12 GMT
Expires: Sun, 09 May 2010 20:35:12 GMT
Cache-Control: public, max-age=2592000
Server: gws
Content-Length: 219

答案 1 :(得分:20)

您可以通过curl使用HEAD请求。像:

$ch = curl_init();
$url = 'http://sstatic.net/so/img/logo.png';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$results = explode("\n", trim(curl_exec($ch)));
foreach($results as $line) {
        if (strtok($line, ':') == 'Content-Type') {
                $parts = explode(":", $line);
                echo trim($parts[1]);
        }
}

返回: image / png

答案 2 :(得分:2)

如果您对使用Zend_Http_Client组件的更优雅的Zend Framework版本here is a class感到满意。

像这样使用它:

$sniffer = new Smartycode_Http_Mime(); 
$contentType = $sniffer->getMime($url);