我正在创建一个小代码,用于读取 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);
}
我不断返回没有猜测