PHP DOM 解析 HTML 表
我正在尝试解析页面中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DOMNodelist->item() (item() 期望索引作为参数,它是从零开始的,因此 1 将返回第二个表)
Use DOMNodelist->item() (item() expects as argument the index, it's zero-based so 1 will return the 2nd table )