这是我要解析的html部分:
<center>
<table border="0" cellpadding="0" cellspacing="0" >
<td>
Some text
<br>
<font color=brown>label0</font>Value0
<br>
<font color=brown>Label1</font>Value1.<br>
Some text
<br>
<font color=brown>Label2</font>Value2<br>
</td>
</table>
</center>
我想得到 Value0 和 Value1。
如果我使用这个:
$index=$element->nodeValue;
其中元素是对.../font
我得到Label0,1,2的查询。但我想要价值。怎么做?如有必要,我还可以提供更多代码。