Skip to content

Instantly share code, notes, and snippets.

@eurowebpage
Created January 12, 2020 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eurowebpage/a835170438c9102868ccbcbf7514768b to your computer and use it in GitHub Desktop.
Save eurowebpage/a835170438c9102868ccbcbf7514768b to your computer and use it in GitHub Desktop.
Vérifier une url indexée sur Google script php
<?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';
}
echo indexed('https://votre-site.eu/');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment