Find stacked div class with Simple HTML DOM Parser

2019-07-15 11:38发布

I am using PHP Simple HTML DOM Parser and there is a section in the html page with the following source:

<div class="box-content padding-top-1 padding-bottom-1 font-size-3">
    <ul>
        <li>
            <a href="link1">linkdescription 1</a>
        </li>
        <li>
            <a href="link2">linkdescription 2</a>
        </li>
    </ul>
</div>

How can I now get the list of links with using the stacked class identifier?

Here's what I've currently tried:

  • List item $html->find('.box-content padding-top-1 padding-bottom-1 font-size-3'));
    • returns empty
  • List item $html->find('.box-content'));
    • returns other page elements in a box
  • List item $html->find('.box-content+padding-top-1+padding-bottom-1+font-size-3'));
    • never mind :(

2条回答
来,给爷笑一个
2楼-- · 2019-07-15 12:36

Or you can try this:

List item $html->find('div[class=box-content padding-top-1 padding-bottom-1 font-size-3]');
查看更多
老娘就宠你
3楼-- · 2019-07-15 12:42

For targeting an element with multiple classes, use dot (.) as the separator between classes. Spaces indicate a parent -> child relationship.

So, in your example, you would need:

List item $html->find('.box-content.padding-top-1.padding-bottom-1.font-size-3'));
查看更多
登录 后发表回答