我正在将此代码放入一个$html变量中:

...
...
<table id="tbvalue" class="table_main">
<tr align="center">
<td>
    <div style='background-color:#534522;' ><img src="operation.bmp" border="0" alt="image" width="250" height="60" /></div>
    <br />
</td>
</tr>
<tr align="center">
    <td class="other">
        more text
    </td>
</tr>
<tr align="center">
    <td>
    <input name="name" type="text" id="label" tabindex="1"/>
    </td>
</tr>
<tr>
    <td>
    <span id="lblErrCap" class="errfont"></span>
    </td>
</tr>
</table>
...
...

注意:我需要<img>的第一次出现在table id="tbvalue"的内部
我想这么做:
$dom = new domDocument;

/*** load the html into the object ***/
@$dom->loadHTML($html); // the @ is to silence errors and misconfigures of HTML

/*** discard white space ***/
$dom->preserveWhiteSpace = false;
$xpath = new DOMXPath($dom);

$spans = $xpath->query('//img');
echo $spans->item(0)->getAttribute("src");

但是这个查询不知道表table id="tbvalue",只需要取第一个<img>
img内部获取第一个table id="tbvalue"的方法是什么?

最佳答案

这样做:

<?php
$xpath = new DOMXPath($dom);
$spans = $xpath->query('//table[@id="tbvalue"]//img[1]');
echo $spans->item(0)->getAttribute("src");

//运算符意味着从当前节点中选择与所选内容匹配的文档中的节点,无论这些节点位于何处
您可以找到更多有用的信息here

09-19 10:57