使用汽车关键字在 Google 图片上搜索并获取汽车图片。
我找到了两个像这样实现的链接,
也实现了,但它只提供了 4 个随机图像。
问题:如何使用我想要实现的关键字在 PHP 中获取汽车图像,就像我们在 Google 上搜索一样?
任何建议将不胜感激!!!
使用汽车关键字在 Google 图片上搜索并获取汽车图片。
我找到了两个像这样实现的链接,
也实现了,但它只提供了 4 个随机图像。
问题:如何使用我想要实现的关键字在 PHP 中获取汽车图像,就像我们在 Google 上搜索一样?
任何建议将不胜感激!!!
您可以为此使用PHP Simple HTML DOM 库:
<?php
include "simple_html_dom.php";
$search_query = "ENTER YOUR SEARCH QUERY HERE";
$search_query = urlencode( $search_query );
$html = file_get_html( "https://www.google.com/search?q=$search_query&tbm=isch" );
$image_container = $html->find('div#rcnt', 0);
$images = $image_container->find('img');
$image_count = 10; //Enter the amount of images to be shown
$i = 0;
foreach($images as $image){
if($i == $image_count) break;
$i++;
// DO with the image whatever you want here (the image element is '$image'):
echo $image;
}
这将打印特定数量的图像(数量在 '$image_count' 中设置)。
有关 PHP Simple HTML DOM 库的更多信息,请单击此处。
我对此不太确定,但谷歌仍然提供了一个很好的文档。
$url = "https://ajax.googleapis.com/ajax/services/search/images?" .
"v=1.0&q=barack%20obama&userip=INSERT-USER-IP";
// sendRequest
// note how referer is set manually
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, /* Enter the URL of your site here */);
$body = curl_exec($ch);
curl_close($ch);
// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...
这是来自官方谷歌关于图像搜索的开发者指南。如需更多参考,您可以在此处获得相同的参考。
https://developers.google.com/image-search/v1/jsondevguide#json_snippets_php
在 $url 你必须设置搜索关键字。