标签: php html dom domparser
我试着找到:
<a class="one two three four five">LINK</a>
如何找到“4”类中包含的锚点?
我试着这样:
$dom->find("a[class*=four]");
但它不起作用。我正在使用html_simple_dom库。