Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The best I could find, an if fclose fopen type thing, makes the page load really slowly.

Basically what I'm trying to do is the following: I have a list of websites, and I want to display their favicons next to them. However, if a site doesn't have one, I'd like to replace it with another image rather than display a broken image.

share|improve this question
I think you can use CURL and check its return codes. But if it's the speed that is a problem, just do it offline and cache. – Pies Jun 11 '09 at 15:55
Yes, but I would still recommend using an offline script (run from cron) that parses the list of websites, checks if they've got favicons and cache that data for the frontend. If you don't/can't use cron, at least cache the results for every new URL you check. – Pies Jun 18 '09 at 14:49

13 Answers

You can instruct curl to use the HTTP HEAD method via CURLOPT_NOBODY.

More or less

$ch = curl_init("http://www.example.com/favicon.ico");

curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$retcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// $retcode > 400 -> not found, $retcode = 200, found.
curl_close($ch);

Anyway, you only save the cost of the HTTP transfer, not the TCP connection establishment and closing. And being favicons small, you might not see much improvement.

Caching the result locally seems a good idea if it turns out to be too slow. HEAD checks the time of the file, and returns it in the headers. You can do like browsers and get the CURLINFO_FILETIME of the icon. In your cache you can store the URL => [ favicon, timestamp ]. You can then compare the timestamp and reload the favicon.

share|improve this answer
ah, you beat me to it. – Tom Haigh Jun 11 '09 at 16:13
3  
just a note: retcode errors on all 400 codes so the validation would be >= not just > – JustinBull Apr 30 '12 at 22:07
Some sites block access if you don't provide a user agent string, so I suggest following this guide to add CURLOPT_USERAGENT in addition to CURLOPT_NOBODY: davidwalsh.name/set-user-agent-php-curl-spoof – rlorenzo Aug 17 '12 at 22:30

As Pies say you can use cURL. You can get cURL to only give you the headers, and not the body, which might make it faster. A bad domain could always take a while because you will be waiting for the request to time-out; you could probably change the timeout length using cURL.

Here is example:

function remoteFileExists($url) {
    $curl = curl_init($url);

    //don't fetch the actual page, you only want to check the connection is ok
    curl_setopt($curl, CURLOPT_NOBODY, true);

    //do request
    $result = curl_exec($curl);

    $ret = false;

    //if request did not fail
    if ($result !== false) {
        //if request was ok, check response code
        $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);  

        if ($statusCode == 200) {
            $ret = true;   
        }
    }

    curl_close($curl);

    return $ret;
}

$exists = remoteFileExists('http://stackoverflow.com/favicon.ico');
if ($exists) {
    echo 'file exists';
} else {
    echo 'file does not exist';   
}
share|improve this answer

This is not an answer to your original question, but a better way of doing what you're trying to do:

Instead of actually trying to get the site's favicon directly (which is a royal pain given it could be /favicon.png, /favicon.ico, /favicon.gif, or even /path/to/favicon.png), use google:

<img src="http://www.google.com/s2/favicons?domain=[domain]">

Done.

share|improve this answer
The syntax make a bit confusion. So here one example: <img src="google.com/s2/favicons?domain=stackoverflow.com">; – habeebperwad Nov 5 '12 at 6:15

CoolGoose's solution is good but this is faster for large files (as it only tries to read 1 byte):

if (false === file_get_contents("http://example.com/path/to/image",0,null,0,1)) {
    $image = $default_image;
}
share|improve this answer
+1. Is there what are the drawbacks for this solution against the CURL one? – Adriano Varoli Piazza Apr 15 '10 at 13:50
you can just use fopen - if the request return code is 404, fopen returns false. – s3v3n May 2 '11 at 17:05
1  
+1 Great solution. – Josh Apr 13 '12 at 18:24
this is really slow and did not work for me (meaning it still displayed a broken image if the file path was not correct) – Helmut Jul 29 '12 at 9:00
if (false === file_get_contents("http://example.com/path/to/image")) {
    $image = $default_image;
}

Should work ;)

share|improve this answer
hm... :( for me it did not... – Helmut Jul 29 '12 at 9:01

If you are dealing with images, use getimagesize. Unlike file_exists, this built-in function supports remote files. It will return an array that contains the image information (width, height, type..etc). All you have to do is to check the first element in the array (the width). use print_r to output the content of the array

$imageArray = getimagesize("http://www.example.com/image.jpg");
if($imageArray[0])
{
    echo "it's an image and here is the image's info<br>";
    print_r($imageArray);
}
else
{
    echo "invalid image";
}
share|improve this answer

A radical solution would be to display the favicons as background images in a div above your default icon. That way, all overhead would be placed on the client while still not displaying broken images (missing background images are ignored in all browsers AFAIK).

share|improve this answer
1  
+1 if you're not checking multiple locations for their favicon (favicon.ico, favicon.gif, favicon.png) this seems to be the best solution – Galen Jun 11 '09 at 20:20

This can be done by obtaining the HTTP Status code (404 = not found) which is possible with file_get_contentsDocs making use of context options. The following code takes redirects into account and will return the status code of the final destination (Demo):

$url = 'http://example.com/';
$code = FALSE;

$options['http'] = array(
    'method' => "HEAD",
    'ignore_errors' => 1
);

$body = file_get_contents($url, NULL, stream_context_create($options));

foreach($http_response_header as $header)
    sscanf($header, 'HTTP/%*d.%*d %d', $code);

echo "Status code: $code";

If you don't want to follow redirects, you can do it similar (Demo):

$url = 'http://example.com/';
$code = FALSE;

$options['http'] = array(
    'method' => "HEAD",
    'ignore_errors' => 1,
    'max_redirects' => 0
);

$body = file_get_contents($url, NULL, stream_context_create($options));

sscanf($http_response_header[0], 'HTTP/%*d.%*d %d', $code);

echo "Status code: $code";

Some of the functions, options and variables in use are explained with more detail on a blog post I've written: HEAD first with PHP Streams.

share|improve this answer
Related: PHP: get_headers set temporary stream_context – hakre Sep 1 '12 at 11:14
Related: What is the best way to check if a URL exists in PHP? (Dec 14 '10) – hakre Sep 29 '12 at 12:31

Don't know if this one is any faster when the file does not exist remotely, is_file(), but you could give it a shot.

$favIcon = 'default FavIcon';
if(is_file($remotePath)) {
   $favIcon = file_get_contents($remotePath);
}
share|improve this answer
-1, is_file does not seem to work with remote files. – greg0ire Mar 29 '12 at 14:41
From the docs: "As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to Supported Protocols and Wrappers to determine which wrappers support stat() family of functionality." – PatrikAkerstrand Mar 30 '12 at 20:29
Do you mean this could work if you register a stream wrapper? Edit your question to show a working example and I'll remove my downvote (and upvote you if I can). But for the moment, I tested is_file from the php cli with a remote file, and got false. – greg0ire Mar 31 '12 at 11:20
no working example: var_dump(is_file('http://cdn.sstatic.net/stackoverflow/img/sprites.png')); bool(false) – greg0ire Mar 31 '12 at 11:27

There's an even more sophisticated alternative. You can do the checking all client-side using a JQuery trick.

$('a[href^="http://"]').filter(function(){
     return this.hostname && this.hostname !== location.hostname;
}).each(function() {
    var link = jQuery(this);
    var faviconURL =
      link.attr('href').replace(/^(http:\/\/[^\/]+).*$/, '$1')+'/favicon.ico';
    var faviconIMG = jQuery('<img src="favicon.png" alt="" />')['appendTo'](link);
    var extImg = new Image();
    extImg.src = faviconURL;
    if (extImg.complete)
      faviconIMG.attr('src', faviconURL);
    else
      extImg.onload = function() { faviconIMG.attr('src', faviconURL); };
});

From http://snipplr.com/view/18782/add-a-favicon-near-external-links-with-jquery/ (the original blog is presently down)

share|improve this answer
function remote_file_exists($url){
   return(bool)preg_match('~HTTP/1\.\d\s+200\s+OK~', @current(get_headers($url)));
}  
$ff = "http://www.emeditor.com/pub/emed32_11.0.5.exe";
    if(remote_file_exists($ff)){
        echo "file exist!";
    }
    else{
        echo "file not exist!!!";
    }
share|improve this answer

You can use :

$url=getimagesize(“http://www.flickr.com/photos/27505599@N07/2564389539/”);

if(!is_array($url))
{
   $default_image =”…/directoryFolder/junal.jpg”;
}
share|improve this answer

You should issue HEAD requests, not GET one, because you don't need the URI contents at all. As Pies said above, you should check for status code (in 200-299 ranges, and you may optionally follow 3xx redirects).

The answers question contain a lot of code examples which may be helpful: http://stackoverflow.com/questions/770179/php-curl-head-request-takes-a-long-time-on-some-sites

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.