3

在解析页面内容时,我只想列出图像,但宁愿通过文件扩展名找到它们,因为我可能只想要 jpg 而不是 png。

我知道我可以这样做来列出 src 标记中的所有图像,但我只想要上面详述的图像:

foreach($html->find('img') as $e)

我已经阅读了在线文档,但没有提到如何/是否可以这样做?

更新

这是我目前使用的代码:

include('simple_html_dom.php');

function getUrlAddress()
{
/*** check for https is on or not ***/
$url = $_SERVER['HTTPS'] == 'on' ? 'https' : 'http';
/*** return the full address ***/
return $url .'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
}

$html = file_get_html($url);

foreach($html->find('img') as $e) // here I want to find just e.g. .jpg OR .png files instead of <img>

echo '<img src='.$e->src .'><br>';
4

1 回答 1

2

这应该有效:

$jpgs = $html->find('img[src$=jpg]'); 
于 2012-01-23T10:46:25.483 回答