I'm using Symfony DomCrawler to parse my HTML. I'm reading articles on my website like this:
$domCrawler->filter('.post')->each(function (DomCrawler $post) {
// ...
});
How can I walk through them backwards? I'd like to start from the post that is at the very bottom of the page and then go up.