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'); | |
if (!curl_exec($ch)) { | |
// var_dump('failed'); | |
return false; | |
} | |
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE); | |
// var_dump($code); | |
return $code == '200'; | |
} |
This comment has been minimized.
This comment has been minimized.
|
This comment has been minimized.
This comment has been minimized.
check_if_url_google_index(){
local url="${1}"
local code
code="$( curl --user-agent 'Chrome 10' -s -o /dev/null -w "%{http_code}" 'https://webcache.googleusercontent.com/search?q=cache:'"${url}" )"
[[ "${code}" == "200" ]] && return 0 || return 1
}
check_if_url_google_index "https://flippa.com/8812637-thefamousfolk-com" && echo "yes" || echo "no"
check_if_url_google_index "https://flippa.com/foobar.tld" && echo "yes" || echo "no"
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
love this.. thx