PHP + XPath - 获取节点文本,包括<br/>,没有子节点内容

时间:2016-02-22 20:37:42

标签: php xpath

我的html中有这个(以下的多个实例):

<div id='message'>
    This is the first line<br />
    This is the second line
    <a href='link'>link_A</a>
</div>

我想得到这个:

This is the first line<br />This is the second line

使用

$messages = $xpath->query('//div[@id="message"]/text()');

我正在

  

这是第一行

  

这是第二行

作为单独的节点。

按照另一个question我试过

$xpath->query('//div[@id="message"][self::text() or self:br]');
AND
$xpath->query('//div[@id="message"]//nodes[self::text() or self:br]');

但是这给出了'无效表达'错误。

有人可以帮我解决我在这里做错的事吗?

感谢。

1 个答案:

答案 0 :(得分:0)

您可以获取node()但不包括a元素:

//div[@id="message"]/node()[not(self::a)]

演示(使用xmllint):

$ cat test.html
<div id='message'>
    This is the first line<br/>
    This is the second line
    <a href='link'>link_A</a>
</div>
$ xmllint test.html --xpath '//div[@id="message"]/node()[not(self::a)]'
This is the first line<br/>
This is the second line