I am trying to get the content of ul
tag with multiple class names. The same syntax works for div tags but cant get it to work with the ul
tag below. It just returns empty array.
<html>
<div>
<div>
<div>
<ul class="set-left farm margin-exclude">
<li>
<a href="#">Text</a>
</li>
</ul>
</div>
</div>
</div>
</html>
Below just returns empty Array.
$html->find('ul[class=set-left farm margin-exclude]');