我需要显示谷歌通过 simple_html_dom.php 搜索的大图像
include_once( "simple_html_dom.php" );
$key="alexis";
$html = new simple_html_dom();
$html=file_get_html('http://images.google.com/images?as_q='. $key .'&hl=en&imgtbs=z&btnG=Search+Images&as_epq=&as_oq=&as_eq=&imgtype=&imgsz=m&imgw=&imgh=&imgar=&as_filetype=&imgc=&as_sitesearch=&as_rights=&safe=images&as_st=y');
foreach($html->find('a') as $element) {
preg_match('#(?:http://)?(http(s?)://([^\s]*)\.(jpg|gif|png))#', $element->href, $imagelink);
echo $imagelink['1'];
}
结果:
但我需要一个链接只用于第一张图片,谢谢