Разбор HTML с помощью RegEx - почти всегда плохая идея.К счастью, в PHP есть библиотеки, которые могут сделать всю работу за вас.Следующий код использует DOMDocument для извлечения либо мета-описания, либо, если оно не существует, первых 1000 символов на странице.
<?php
function getExcerpt($html) {
$dom = new DOMDocument();
// Parse the inputted HTML into a DOM
$dom->loadHTML($html);
$metaTags = $dom->getElementsByTagName('meta');
// Check for a meta description and return it if it exists
foreach ($metaTags as $metaTag) {
if ($metaTag->getAttribute('name') === "description") {
return $metaTag->getAttribute('content');
}
}
// No meta description, extract an excerpt from the body
// Get the body node
$body = $dom->getElementsByTagName('body');
$body = $body->item(0);
// extract the contents
$bodyText = $body->textContent;
// collapse any line breaks
$bodyText = preg_replace('/\s*\n\s*/', "\n", $bodyText);
// collapse any more leftover spaces or tabs to single spaces
$bodyText = preg_replace('/[ ]+/', ' ', $bodyText);
// return the first 1000 chars
return trim(substr($bodyText, 0, 1000));
}
$html = file_get_contents('test.html');
echo nl2br(getExcerpt($html));
Возможно, вы захотите добавить немного больше логики, некоторыеОбход DOM, чтобы попытаться найти контент, или просто какой-то фрагмент кода в середине текста.Таким образом, этот код, вероятно, будет захватывать кучу ненужных вещей, таких как верхняя часть страницы навигации и т. Д.