<?php
libxml_use_internal_errors(true);
$doc = new DOMDocument();
$html = file_get_contents('https://premierliga.ru/match/match_14803.html');
$doc->loadHTML($html);
$xpath = new DOMXpath($doc);
$elem = $xpath->query('//*[@id="content"]/div/indexarea/div/div/div[3]/div[5]/table[6]/tbody/tr/td/p/a/text()');
foreach($elem as $e){
var_dump($e);
}
?>
//td[@class="official"]/p/a/text()