web-dev-qa-db-ja.com

cURLとphpを使用して外部ファイルのMIMEタイプを取得する

mime_content_type()とファイル情報を使用しましたが、成功しませんでした。今すぐcURLをPHPで使用し、別のドメインでホストされているファイルのヘッダーを取得して、タイプがMP3かどうかを抽出して判断したいと思います(MP3のmimeタイプだと思います)はaudio/mpeg

簡単に言えば、私はそれを知っていますが、それを適用する方法がわかりません:)

ありがとう

22
Ryan

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

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
45
maček

HEADリクエストはcurl経由で使用できます。次のようになります:

$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

20
Mark

より洗練されたバージョンのZend Frameworkでよければ、 ここにクラスがあります はZend_Http_Clientコンポーネントを利用します。

次のように使用します。

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