我很难在大量HTML表格中找到DYNAMIC-TEXT值。
我已经尝试过$html->find("th[plaintext*=Type"),从这里开始,我想访问同级,但是什么也不返回。这是表格结构
<table>
<tbody>
</tbody>
<colgroup>
<col width="25%">
<col>
</colgroup>
<tbody>
<tr class="odd">
<th colspan="2">Name</th>
</tr>
<tr class="even">
<th width="30%">Type</th>
<td>DYNAMIC-TEXT</td>
</tr>
</tbody>
</table>
我希望输出是DYNAMIC-TEXT的文本,但动作输出什么都没有