Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP: get_headers set temporary stream_context

I guess PHP's get_headers does not allow for a context, so I have to change the default stream context to only get the HEAD of a request. This causes some issues with other requests on the page. I can't seem to figure out how to reset the default stream context. I'm trying something like:

$default = stream_context_get_default(); //Get default stream context so we can reset it
stream_context_set_default( //Only fetch the HEAD
      array(
    'http' => array(
       'method' => 'HEAD'
     )
  )
);
$headers = get_headers($url, 1); //Url can be whatever you want it to be
//var_dump($headers);
var_dump($default);
stream_context_set_default($default); //This doesn't work as it expects an array and not a resource pointer

Does anyone know a fix for this?

I know it has been suggested to use Curl, but I would rather not for this one. Thanks!

like image 337
Senica Gonzalez Avatar asked Dec 08 '11 10:12

Senica Gonzalez


Video Answer


1 Answers

I ended up using the stream_get_meta_data() function to get the HTTP headers.

This is how I implemented it:

function get_headers_with_stream_context($url, $context, $assoc = 0) {
    $fp = fopen($url, 'r', null, $context);
    $metaData = stream_get_meta_data($fp);
    fclose($fp);

    $headerLines = $metaData['wrapper_data'];

    if(!$assoc) return $headerLines;

    $headers = array();
    foreach($headerLines as $line) {
        if(strpos($line, 'HTTP') === 0) {
            $headers[0] = $line;
            continue;
        }

        list($key, $value) = explode(': ', $line);
        $headers[$key] = $value;
    }

    return $headers;
}

Called like this,

$context = stream_context_create(array('http' => array('method' => 'HEAD')));
$headers = get_headers_with_stream_context($url, $context, 1);

it gives you what you're after while leaving the standard stream_context unmodified.

Please note that this function will fail if passed anything other than an http url.

There seems to be a feature request for an additional argument for get_headers(), but the bug tracker is down as I'm writing this, so I can't check for other solutions there.

like image 51
Peter Avatar answered Sep 19 '22 09:09

Peter