我需要排除一个
图像标签来自
<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>
并且只得到文本即马特卡利奇。是否可以使用 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”。