可能重复:
使用 xpath 选择 css 类
我正在尝试提取像这样的 html 中所有图像的源
<li class="carousel_item">
<img src="http://www.xxxx.com/1fc1c1c2db5852e08ffcff38.jpg"
width="200"
height="200"
style="margin-bottom:1px"
class="image_error" />
<span class="image_error" title="jpg"></span>
<span class="image_error" title="2.jpg"></span>
</li>
当我使用以下命令时,我会获取文档中的所有图像
$nodelist = $xpath->query( "//img/@src" );
foreach ($nodelist as $n){
echo $n->nodeValue."<br>";
}
但我只想要 class="carousel_item" 中列出的项目
这可能吗?