Я пишу поисковую систему для своего сайта, и мне нужно извлечь куски текста с заданным ключевым словом и несколько слов для списка результатов поиска.
Я закончил с чем-то вроде этого:
/**
* This function return part of the original text with
* the searched term and few words around the searched term
* @param string $text Original text
* @param string $word Searched term
* @param int $maxChunks Number of chunks returned
* @param int $wordsAround Number of words before and after searched term
*/
public static function searchTerm($text, $word=null, $maxChunks=3, $wordsAround=3) {
$word = trim($word);
if(empty($word)) {
return NULL;
}
$words = explode(' ', $word); // extract single words from searched phrase
$text = strip_tags($text); // clean up the text
$whack = array(); // chunk buffer
$cycle = 0; // successful matches counter
foreach($words as $word) {
$match = array();
// there are named parameters 'pre', 'term' and 'pos'
if(preg_match("/(?P\w+){0,$wordsAround} (?P$word) (?P\w+){0,$wordsAround}/", $text, $match)) {
$cycle++;
$whack[] = $match['pre'] . ' <strong>' . $word . '</strong> ' . $match['pos'];
if($cycle == $maxChunks) break;
}
}
return implode(' | ', $whack);
}
Эта функция не работает, но вы можете увидеть основную идею. Любые предложения по улучшению регулярного выражения приветствуются!