5

使用汽车关键字在 Google 图片上搜索并获取汽车图片。

在此处输入图像描述

我找到了两个像这样实现的链接,

  1. 使用 curl 多处理程序从 Google 检索多个图像的 PHP 类
  2. 使用 cURL 的谷歌图像 API

也实现了,但它只提供了 4 个随机图像。 在此处输入图像描述在此处输入图像描述在此处输入图像描述在此处输入图像描述

问题:如何使用我想要实现的关键字在 PHP 中获取汽车图像,就像我们在 Google 上搜索一样?

任何建议将不胜感激!!!

4

2 回答 2

6

您可以为此使用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 库的更多信息,请单击此处。

于 2015-01-05T19:50:28.460 回答
0

我对此不太确定,但谷歌仍然提供了一个很好的文档。

 $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 你必须设置搜索关键字。

于 2014-11-15T11:32:34.983 回答