从下一个标签获取文本

发布于 2024-10-16 12:16:18 字数 266 浏览 1 评论 0原文

我有一个看起来像这样的 html 片段(当然被其他 html 包围):

<p class="finfot3"><b>Header:</b></p>
<p>Text</p>

How can I get Text from this?我正在使用 simple_html_dom,但如果 simple_html_dom 不能做到这一点,我可以使用其他东西。

I have a html snippet that looks like this (of course surrounded by other html):

<p class="finfot3"><b>Header:</b></p>
<p>Text</p>

How can I get Text from this? I'm using simple_html_dom, but I can use something else if simple_html_dom can't do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

假情假意假温柔 2024-10-23 12:16:18

这未经测试,但您可能正在寻找 simple_html_doms next_sibling() 方法。

$html->find('p[class=finfot3]')->next_sibling()->innertext() 应该返回第二个<的内容code>

元素。

This is untested, but you might be looking for simple_html_doms next_sibling() method.

$html->find('p[class=finfot3]')->next_sibling()->innertext() should return the contents of the second <p> element.

烛影斜 2024-10-23 12:16:18

找到具有该类的 p 元素。然后使用

其中 $e 是具有该类的元素。

如需 SimpleHtmlDom 的更好替代方案,请参阅解析 HTML 的最佳方法

Find the p element with the class. Then use

where $e is the element with the class.

For better alternatives to SimpleHtmlDom, see Best Methods to parse HTML

夏の忆 2024-10-23 12:16:18
preg_match('~<p>(.*)</p>~', $html, $matches);
var_dump($matches);
preg_match('~<p>(.*)</p>~', $html, $matches);
var_dump($matches);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文