PHP:simple_html_dom – 如何查找不在某个类中的元素?
作者:互联网
我在PHP中使用simple_html_dom来获取html页面中的所有A-tags.但有些标签位于div内部,应该被忽略.
我想我需要这样的东西:
$htmldom-> find(“!div [class = blabla] a”);
我发现我可以使用[attribute!= value]来指定没有特定属性值的元素,但是这对于元素有什么作用呢?
解决方法:
你基本上有它:
$htmldom->find("[class!=blabla] a");
标签:php,simple-html-dom 来源: https://codeday.me/bug/20190710/1418863.html