-2
私はこの作業を行うことができます。..PHPでこのようにGoogleに問い合わせる方法はありますか?
if ($content = file_get_contents("http://www.somerandomwebsite.com")) {
echo $content;
}
けど...これを行う方法はありますか?
if ($content = file_get_contents("site:somerandomwebsite.com")) {
echo "Still Indexed!";
}
else {
echo "Google does not love you anymore";
}
のためということは何ですか?あなたは 'http://google.com/?q=" some + query + -site:somrandomwebsite.comを意味しないのですか? – bluefoot
wgetはあなたの友だちです – Bytemain
私はfile_get_contentsでgoogleの結果ページを取得できるとは思いません。代わりにcurl()を試してください。 –