PHP Как извлечь часть данной строки? - PullRequest
0 голосов
/ 08 октября 2010

Я пишу поисковую систему для своего сайта, и мне нужно извлечь куски текста с заданным ключевым словом и несколько слов для списка результатов поиска. Я закончил с чем-то вроде этого:


/**
 * 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);
    }
Эта функция не работает, но вы можете увидеть основную идею. Любые предложения по улучшению регулярного выражения приветствуются!

Ответы [ 2 ]

1 голос
/ 08 октября 2010

почему заново изобретать колесо, у Google нет лучшей поисковой системы, которую я бы посмотрел на их устройство

1 голос
/ 08 октября 2010

Никогда, никогда не вставляет пользовательский контент в шаблон RegEx без использования preg_quote для очистки ввода:

http://us3.php.net/manual/en/function.preg-quote.php

...