CURL ve php kullanarak harici bir dosyanın mime türünü alın

3 Cevap php

I mime_content_type() kullanılan ve File info ama successed hiç. i PHP ile Curl şimdi kullanmak ve başka bir etki alanında barındırılan dosya başlıkları daha sonra ayıklamak almak istiyorum & MP3 türü olup olmadığını belirler. (I MP3 mime türü olduğunu düşünüyorum audio/mpeg)

Kısaca, ben biliyorum ama bunu uygulamak için nasıl bilmiyorum :)

Teşekkürler

3 Cevap

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

output

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

Sen kıvrılma yoluyla bir HEAD isteği kullanabilirsiniz. Gibi:

$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 = split("\n", trim(curl_exec($ch)));
foreach($results as $line) {
        if (strtok($line, ':') == 'Content-Type') {
                $parts = explode(":", $line);
                echo trim($parts[1]);
        }
}

Döndürür: image/png

Eğer daha şık bir Zend Framework sürüm ile tamamsa, here is a class Zend_Http_Client bileşeninin kullanımı kılan.

Bunu gibi pek kullanın: $sniffer = new Smartycode_Http_Mime(); $contentType = $sniffer->getMime($url);