Check website availability with PHP and cURL

Here you’ll find a PHP script to check if your website is up and online available. It uses PHP and cURL. This script comes in handy because website uptime and availability is important, and you want your website to be always online available. If your website is down, it’ll send you an email to notify you about downtime.

The PHP code to check if your website is up uses PHP cURL (Client URL Library). This function takes a domain name as input parameter and outputs TRUE or FALSE, for available or unavailable, depending on the returned HTTP status code.

You can use this code to check if your website is online available. Schedule in a cron for automated checks.

Learn why not to turn off CURLOPT_SSL_VERIFYPEER in your PHP configuration.

As you know, the HTTP status code 200 means OK, and 304 is Not Modified. Those are the status codes we are looking for as anything else may indicate a problem with your website or server.

<?php
/**
 * PHP/cURL function to check a web site status. If HTTP status 
 * is not 200 or 302, or the requests takes longer than 10 
 * seconds, the website is unreachable.
 * 
 * Follow me on Twitter: @Jan_Reilink
 * Send your donation through https://www.paypal.me/jreilink. Thanks!
 *
 * @param string $url URL that must be checked
 */

function url_test( $url ) {
	$timeout = 10;
	$ch = curl_init();
	curl_setopt ( $ch, CURLOPT_URL, $url );
	curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
	curl_setopt ( $ch, CURLOPT_TIMEOUT, $timeout );
	$http_respond = curl_exec($ch);
	$http_respond = trim( strip_tags( $http_respond ) );
	$http_code = curl_getinfo( $ch, CURLINFO_HTTP_CODE );
	if ( ( $http_code == "200" ) || ( $http_code == "302" ) ) {
		return true;
	} else {
		// you can return $http_code here if necessary or wanted
		return false;
	}
	curl_close( $ch );
}

// simple usage:
$website = "www.example.com";
if( !url_test( $website ) ) {
	echo $website ." is down!";
} else {
	echo $website ." functions correctly.";
}
?>Code language: PHP (php)

Substitute www.example.com for your domain name. This can easily be scheduled in a Linux/Unix cron or Windows scheduled task, if you have PHP installed locally.

Send an email if your website is down

And what if your website is down? Send an email! :-) The above PHP function is very easy to extend with a PHP mail sending function. This’ll keep you informed on any downtime.

All can be automated using a monitoring tool like Monit. Read more about Monit website and services monitoring, built on an Ubuntu 14.04 LTS VM on Windows Server 2012 R2 Hyper-V. You can also set up and configure Monit in Windows WSL to monitor your websites easily.

Jan Reilink

Hi, my name is Jan. I am not a hacker, coder, developer or guru. I am merely an application manager / systems administrator, doing my daily thing at Embrace - The Human Cloud. In the past I worked for clidn and Vevida. With over 20 years of experience, my specialties include Windows Server, IIS, Linux (CentOS, Debian), security, PHP, websites & optimization. I blog at https://www.saotn.org.

11 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
Javier
01/03/2021 17:03

curl_close($ch) should be before if block and cleaning $http_respond is not necessary unless you want to add filter functionality (check response AND check content)

07/04/2020 11:39

Hi, using a browser sometimes returns another http response code then using curl on the same site. Maybe because of cookies to be accepted or user agents that are not set?

29/03/2020 19:29

For debugging only, remove when you’ve found the issue nice line

24/06/2019 11:10

Thanks for sharing this. I’ve been trying to learn a little PHP. Great post for me and people who already use other languages like asp or asp.net and want to explore PHP. This is very helpful. Keep on the great work. I just want to say that there is no need to dive too deep in PHP if you don’t want to. A versatile coder can just pick what they need for a particular scenario.

ybouysran
26/04/2019 14:06

Hello, thanks for the snippet! A question: shouldn’t the “curl_close( $ch );” statement come before the “return” lines? Otherwise it’s not executed, is this right?

maycongnghiep
Reply to  ybouysran
28/09/2019 09:30

Thanks for sharing. This code works perfectly fine in workspaces.
For example:
if ( ( $http_code == “200” ) || ( $http_code == “302” ) || ( $http_code == “301” ) || ( $http_code == “307” ) )

ami
24/04/2019 12:26

I have a requirement to check if a particular url is down and then based on that do something. I have written similar code. And I have blocked the particular site on my local hosts file so that it returns a non success status code. Everthing seems to work in local environment. But when I deploy my changes to a QA server, the same code is not working. I am unable to block the particular URL. Where can I block the particular URL to see the similar effect of that of hosts file

Susan
29/03/2019 13:22

Great CURL setup!

But cannot get it to work on subdomains?

Works perfectly example.com but always shows test.example.com as being down.

Any ideas how to make work with subdomains?