私は、画像検索で Google の画像に対する最良の推測を読み取る小さなコードを作成しています。
リンクをクリックして、私が話していることを確認してください。 http://images.google.com/searchbyimage?image_url=http://static.filestube.com/files/images/logo3.gif
リンクをクリックすると、次のような結果が表示されます: この画像の最良の推測: filestube のロゴ
最良の推測を引っ張って返すことができるようにしたい
これが機能しない私のコードです
$ch = curl_init("http://images.google.com/searchbyimage?image_url=http://static.filestube.com/files/images/logo3.gif");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_exec($ch);
curl_close($ch);
preg_match("Best guess for this image: (.*)</a>", $result, $matches);
if(empty($matches)){
echo("No guess on this image. <br />");
} else{
echo("Best guess for this image:");
print_r($matches);
}
私は推測を返し続けます