开发者

Getting the first URL of an image search result with google image API in PHP

开发者 https://www.devze.com 2023-01-03 05:50 出处:网络
did you know a php script (a class will be nice) who get the url of the first image result of a google api image search? Thanks

did you know a php script (a class will be nice) who get the url of the first image result of a google api image search? Thanks

Example.

<?php echo(geturl("searchterm开发者_如何学JAVA")) ?>


I have found a solution to get the first image from Google Image result using Simple HTML DOM as Sarfraz told.

Kindly check the below code. Currently it is working fine for me.

$search_keyword=str_replace(' ','+',$search_keyword);
$newhtml =file_get_html("https://www.google.com/search?q=".$search_keyword."&tbm=isch");
$result_image_source = $newhtml->find('img', 0)->src;
echo '<img src="'.$result_image_source.'">';


You should be able do that easily with Simple HTML DOM.

Note: See the examples on their site for more information.

  • A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way!
  • Find tags on an HTML page with selectors just like jQuery.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号