我需要从
中排除
img标记
<a href="http://www.facebook.com/xxxxxx">
<img style="float: left; margin-right: 10px;"
src="http://profile.ak.fbcdn.net/xxxxx/xxxxx.jpg">
Matt Cartledge
</a>
只获得文字,即Matt Carledge。是否可以使用php简单的html dom解析器? 谢谢你。
$first_anchor = $list->find('a',0);
$prof_img = $first_anchor->find('img',0)->src;
echo $prof_name = $first_anchor->innertext;die();
我需要prof_name为“Matt Cartledge”。
答案 0 :(得分:3)
啊得到了它,它的&gt;明文;那个你
如果我们使用像$ something-&gt; innertext;(它在$ something内部包括其中的所有标签)和如果我们使用$ something-&gt; plaintext;(它只提供排除标签的文本)。