PHP DOM 解析 HTML 表

发布于 2024-12-15 04:48:47 字数 252 浏览 3 评论 0原文

我正在尝试解析页面中的 HTML 表。

然而,它并不是页面中唯一的表,我只对解析 HTML 页面中的第二个 实例感兴趣。

如何指定仅解析 HTML 页面中的第二个 TABLE 实例?

//the table by its tag name  
$tables = $dom->getElementsByTagName('table');   

I am trying to parse a HTML table in a page.

However, it is not the only TABLE in the page, and I am only interested in parsing the 2nd <table> instnace in the HTML page.

How do I specify to parse only the 2nd TABLE instance in the HTML page?

//the table by its tag name  
$tables = $dom->getElementsByTagName('table');   

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

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

发布评论

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

评论(1

深海少女心 2024-12-22 04:48:47

使用 DOMNodelist->item() (item() 期望索引作为参数,它是从零开始的,因此 1 将返回第二个表)

 $table = $dom->getElementsByTagName('table')->item(1);   

Use DOMNodelist->item() (item() expects as argument the index, it's zero-based so 1 will return the 2nd table )

 $table = $dom->getElementsByTagName('table')->item(1);   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文