DiDOM - простой и быстрый html парсер
use DiDom\Document;
$document = new Document('http://www.news.com/', true);
$posts = $document->find('.post');
foreach($posts as $post) {
echo $post->text(), "\n";
}
https://github.com/imangazaliev/didom