我有一个这样的 HTML 文件。
<html>
<body>
.....
.....
<p class="new">
This is text <a href>link </a>
</p>
<p class="new">
More text here.
</p>
<p class="new">
More text here.
</p>
</body>
</html>
我只想得到如下文本:
这是文字链接。更多文字在这里。更多文字在这里。我该如何接近。我试过了
$xpath = new DOMXPath($doc);
$nodes = $xpath->query('//p[contains(@class,'new')]');
没有成功。
错误:语法错误,意外的 T_STRING