php 从 cURL 获取 Content-Type

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/9905224/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-26 07:53:38  来源:igfitidea点击:

Get Content-Type from cURL

phpcurlheader

提问by daidai

This works great to get the header

这非常适合获取标题

 $imageurl = "http://p.twimg.com/AW2-vIUCAAE_1FN.png";

  $ch = curl_init();
  curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt ($ch, CURLOPT_URL, $image_url);
  curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 20);
  curl_setopt ($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, true);
  curl_setopt($ch, CURLOPT_HEADER, true); 
  curl_setopt($ch, CURLOPT_NOBODY, true);

  $content = curl_exec ($ch);

  curl_close ($ch);

  print_r($content);

returning

回来

HTTP/1.1 200 OK
Server: nginx
X-peep-host: den2twapi014
Last-Modified: Mon, 15 Aug 2011 03:41:50 GMT
ETag: "7283847-dbb8-4aa830b1dabf0"
Accept-Ranges: bytes
Content-Length: 56248
Cache-Control: public, max-age=21600
Expires: Wed, 28 Mar 2012 15:53:57 GMT
Content-Type: image/png
X-CDN: AKAM
Date: Wed, 28 Mar 2012 09:53:57 GMT
Connection: keep-alive

what is the best way to echo out the Content-Type:?

回声的最佳方式是Content-Type:什么?

回答by vicky

Try this:-

尝试这个:-

<?php
$image_url = "http://p.twimg.com/AW2-vIUCAAE_1FN.png";

  $ch = curl_init();
  curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt ($ch, CURLOPT_URL, $image_url);
  curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 20);
  curl_setopt ($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, true);
  curl_setopt($ch, CURLOPT_HEADER, true); 
  curl_setopt($ch, CURLOPT_NOBODY, true);

  $content = curl_exec ($ch);
  $contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
    echo $contentType;
    echo "<br/>";
  curl_close ($ch);
    echo "<pre>";
  print_r($content);
  ?>

回答by DaveRandom

Before you call curl_close(), call curl_getinfo():

在您致电之前curl_close(),请致电curl_getinfo()

$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
echo $contentType;

Alternatively, if you want a parsed array of the head, here is a quick and dirty solution (WARNING: this does nothing to validate that the supplied string actually is an HTTP response, use with caution):

或者,如果您想要解析的头部数组,这里有一个快速而肮脏的解决方案(警告:这不会验证提供的字符串实际上是 HTTP 响应,请谨慎使用):

<?php

  function parse_http_head ($str) {

    $result = array();

    // Split into lines
    $lines = explode("\r\n", $str);

    // Handle response line
    $line = explode(' ', array_shift($lines), 3);
    $version = explode('/', $line[0]);
    $result['version'] = (float) $version[1];
    $result['code'] = (int) $line[1];
    $result['text'] = $line[2];

    // Parse headers
    $result['headers'] = array();
    while ($line = trim(array_shift($lines))) {
      list($name, $val) = explode(':', $line, 2);
      $name = strtolower(trim($name)); // Header names are case-insensitive, so convert them all to lower case so we can easily use isset()
      if (isset($result['headers'][$name])) { // Some headers (like Set-Cookie:) may appear more than once, so convert them to an array if necessary
        $result['headers'][$name] = (array) $result['headers'][$name];
        $result['headers'][$name][] = trim($val);
      } else {
        $result['headers'][$name] = trim($val);
      }
    }

    return $result;

  }

  // $content comes from your code above
  $parsed = parse_http_head($content);
  print_r($parsed);

/*
 Output:

Array
(
    [version] => 1.1
    [code] => 200
    [text] => OK
    [headers] => Array
        (
            [server] => nginx
            [x-peep-host] => den2twapi014
            [last-modified] => Mon, 15 Aug 2011 03:41:50 GMT
            [etag] => "7283847-dbb8-4aa830b1dabf0"
            [accept-ranges] => bytes
            [content-length] => 56248
            [cache-control] => public, max-age=21600
            [expires] => Wed, 28 Mar 2012 15:53:57 GMT
            [content-type] => image/png
            [x-cdn] => AKAM
            [date] => Wed, 28 Mar 2012 09:53:57 GMT
            [connection] => keep-alive
        )

)

*/