simple_html_dom - 手册中未涵盖的问题
你好我正在使用 simple_html_dom 搜索具有精确类“hello”的标签的所有实例
foreach($html->find('.hello')as $found
上面并不能完全做到这一点,因为它还给了我像“hello world”这样的类。计算并列出数组中正确的元素很简单,但是正在解析的源 html 会发生变化,因此这是不切实际的。
有什么想法如何找到该课程的准确术语吗?
谢谢
hello I am searching for all instances of tags with the EXACT class "hello" using simple_html_dom
foreach($html->find('.hello')as $found
The above doesn't quite do this because it also gives me classes like "hello world". It is simple yes to count through and list the correct element from the array but the source html that is being parsed changes so that's not practical.
Any ideas how to find an exact term for the class?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下:
如果这不起作用,您总是可以采用这种不太优雅但仍然有效的方法:
您可以在“如何查找 HTML 元素?”标题下找到有关此类内容的更多信息。在手册中。属性选择器非常强大,请参见这里:
Try this:
If that doesn't work, you could always do this less elegant but still working approach:
You can find more out about this kind of stuff under the heading that says How to find HTML elements? in the manual. Attribute selectors are very powerful, see here: