Thursday, May 12, 2016
Thursday, October 11, 2012
How to Check if a URL is UP?
3:18 PM
So in this small quick tutorial i am going to tell you a very short way to determine weather a website is up or not? We will be using the PHP's cURL library in order to determine so.
So lets start:
function urlUP($url){
//Validate the URL first!
if(filter_var($url,FILTER_VALIDATE_URL)){
$handle = curl_init(urldecode($url));
curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($handle);
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);
if($httpCode >= 200 && $httpCode < 400){
return true;
}else{
return false;
}
curl_close($handle);
}
...
Saturday, October 6, 2012
Subscribe to:
Posts (Atom)