如何在我的页面上自动显示第一张谷歌图片

How do I automatically display the first google image on my page?

本文关键字:一张 谷歌 显示 我的      更新时间:2023-09-26

>我有一个页面,它会自动从MySQL数据库中检索两个随机条目,并要求用户在每次刷新页面时进行比较。如何将这两个字符串自动转换为它们的第一个谷歌图片结果?这是我到目前为止所拥有的:

<?php //I retrieve the names and group names here//
$firstpersonaName = (string) $row["personaName"];
$firstpersonaGroupName = (string) $row["groupName"];
    $firstpersonaGroupNameForGoogle = preg_split('( )', $firstpersonaGroupName);
?> //then convert any group names containing spaces into arrays here//
<?php  //then here I build the query that displays a google image page//
    $newname = '';
    foreach ($firstpersonaGroupNameForGoogle as $firstpersonaPartofGroupName) {
        $newname = $firstpersonaPartofGroupName . '+';
    }
    $newname = rtrim($newname, "+");
    echo "https://www.google.com/search?q=" . $firstpersonaName . "+" . $newname . '&tbm=isch'; 
?>

这给了我这样的东西:https://www.google.com/search?q=charlie+always+sunny&tbm=isch

那么我如何获取该链接并将其转换为第一张图像的链接呢?或者真的是前一对中的任何一对。(在本例中:http://cdn3.denofgeek.us/sites/denofgeekus/files/sunny_0.jpg)

好的,这就是我最终为每个查询随机生成两张图片的方法:

首先,我下载了这个并将其添加到与网页相同的目录中:http://simplehtmldom.sourceforge.net/

然后我只是在我希望图片显示的div 中添加了这个 PHP 代码:

<?php
    // Include the php dom parser    
    include_once 'simple_html_dom.php';
    //build the google images query
    $newname = '';
    foreach ($firstpersonaGroupNameForGoogle as $firstpersonaPartofGroupName) {
        $newname = $firstpersonaPartofGroupName . '+';
    }
    $newname = rtrim($newname, "+");
    //echo "https://www.google.com/search?q=" . $firstpersonaName . "+" . $newname . '&tbm=isch'; 
    $newname = "https://www.google.com/search?q=" . $firstpersonaName . "+" . $newname . '&tbm=isch';
    //use parser on queried page
    $html = file_get_html($newname);
    //echo $html;
    //create an array for all pics on page
    $picarray = array();
    $picurl = '';
    // Find all images 
    foreach($html->find('img') as $element) {
       //echo $element->src . '<br>';
       $picurl = $element->src;
       array_push($picarray,$picurl);
    }
    //then pick two random ones
    $picurl = $picarray[array_rand($picarray)];
    echo "<img src=" . $picurl . ">";
    $picurl = $picarray[array_rand($picarray)];
    echo "<img src=" . $picurl . ">";
?>

它们的分辨率很小(大约 150 像素),但这实际上非常适合我正在尝试做的事情。如果你想检索一张非缩略图图片,那就是一个完全不同的蠕虫罐头。