Skip to content

Instantly share code, notes, and snippets.

View Katsaros's full-sized avatar
💭
Make it work, make it right, make it fast.

Giannis Katsaros Katsaros

💭
Make it work, make it right, make it fast.
View GitHub Profile
@qsun
qsun / indexed.php
Created January 21, 2012 23:00
Check if URL is indexed by Google
<?php
function indexed($url) {
$url = 'http://webcache.googleusercontent.com/search?q=cache:' . urlencode($url);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Chrome 10');