Jump to content

Check if URL is valid - Fastest Method


Stooney

Recommended Posts

I currently have the method listed below for checking if a URL is valid.  What I need is the fastest possible method of checking of a sizable array of URLs are valid or not. 

 

Here is what I have:

<?php
if(file_get_contents('http://us.php.net/images/php.gif', 'FILE_TEXT', NULL, 0, 1)){
echo 'ok';
} else{
echo 'fail';
}
?>

 

Is there anything faster than this?

 

Note:  I don't need help with making it work, just need to know if there is a faster method than my file_get_contents way of doing it.  Thanks in advance.

 

Link to comment
Share on other sites

Bad method - file_get_contents() is slow

If you want to check that the webpage exists then I would check the HTTP header. i.e if you get no header the site maybe dead. You may also get a 404 header for an invalid url.

 

<?php
// return header
function httpHeader($url) {
$urlParts = parse_url($url);

$fp	= @fsockopen($urlParts['host'],80,$errno,$errstr,20);
$out = "GET ".$url." HTTP/1.1\r\n"; 
$out.= "Host: ".$urlParts['host']."\r\n"; 
$out.= "Connection: Close\r\n\r\n";
@fwrite($fp,$out);
$content = @fgets($fp);

return $content;
}


print httpHeader("http://google.com")."\n";
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.