1

我需要排除一个

图像
标签来自

 <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”。

4

1 回答 1

3

啊,明白了,它的 -> 明文;谢谢

如果我们使用 like $something->innertext;(它给出 $something 内的所有内容,包括其中的所有标签)并且如果我们使用 $something->plaintext;(它只给出不包括标签的文本)。

于 2013-01-23T06:40:27.663 回答