I'm trying to have DomCrawler select all DIVs that IDs contain "author-"
I currently have
$list = $crawler->filter('div[id*="actor-"]')->each(function (Crawler $node, $i) {
return $node->text();
});
var_dump($list);
But that doesn't return any results, is there any selector like this?
Ricky Hawthorne