views:

136

answers:

5

I would like to send the HEAD command of the Hypertext Transfer Protocol to a server in PHP to retrieve the header, but not the content or a URL. How do I do this in an efficient way?

The probably most common use-case is to check for dead web links. For this I only need the reply code of the HTTP request and not the page content. Getting web pages in PHP can be done easily using file_get_contents("http://..."), but for the purpose of checking links, this is really inefficient as it downloads the whole page content / image / whatever.

+6  A: 

You can do this neatly with cURL:

<?php
// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");

// This changes the request method to HEAD
curl_setopt($ch, CURLOPT_NOBODY, true);

// grab URL and pass it to the browser
curl_exec($ch);

// Edit: Fetch the HTTP-code (cred: @GZipp)
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE); 

// close cURL resource, and free up system resources
curl_close($ch);
PatrikAkerstrand
+1  A: 

It seems like pear has it:

http://pear.php.net/manual/en/package.http.http.head.php

JCasso
+1  A: 

The easiest way to do this is to use curl to get just the headers of the page using these options to configure curl before the request.

curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD');

The exact implementations of using curl in php to get just the http response headers are outlined in detail in this blog post.

tj111
No, no, no... Use `CURLOPT_NOBODY` instead of `CURLOPT_CUSTOMREQUEST`.
Alix Axel
+2  A: 

As an alternative to curl you can use the http context options to set the request method to HEAD. Then open a (http wrapper) stream with these options and fetch the meta data.

$context  = stream_context_create(array('http' =>array('method'=>'HEAD')));
$fd = fopen('http://php.net', 'rb', false, $context);
var_dump(stream_get_meta_data($fd));
fclose($fd);

see also:
http://docs.php.net/stream_get_meta_data
http://docs.php.net/context.http

VolkerK
stream_context_create is really a useful and powerful function.
fuenfundachtzig
I prefer this solution over the ones using curl, because I like using built-in functions. Maybe somebody else can comment on the performance of each possibility?
fuenfundachtzig
+2  A: 

Even easier than curl - just use the PHPget_headers()function which returns an array of all header info for any URL you specify. And another real easy way to check for remote file existence is to usefopen()and try to open the URL in read mode (you'll need to enable allow_url_fopen for this).

Just check out the PHP manual for these functions, it's all in there.

Brian