简单的html dom解析器

时间:2011-06-01 20:29:30

标签: php html dom

我使用simple php dom parser。我在我加载的dom中有一个链接,看起来像这样(在html中):

<a href="...">Some const tesxt</a>

如何使用find功能选择此对象?也许我可以传递查看a容器文本的正则表达式?顺便说一句,它是静态(常量)文本,我想搜索需要链接参考该文本。

1 个答案:

答案 0 :(得分:2)

阅读Manual,它应该为您提供所需的一切。

$ret = $html->find('a');

foreach ($ret as $link) {
    if ($link->innertext == 'Someconst tesxt') {
          // do what you must.
    }
}

不确定您还在寻找什么,但我无法测试上述内容,只需将其放在一起阅读手册即可。