search_index_split
modules/search/search.module, строка 402
- Версии
- 5 – 6
search_index_split($text)
Splits a string into tokens for indexing.
Код
<?php
function search_index_split($text) {
static $last = NULL;
static $lastsplit = NULL;
if ($last == $text) {
return $lastsplit;
}
// Process words
$text = search_simplify($text);
$words = explode(' ', $text);
array_walk($words, '_search_index_truncate');
// Save last keyword result
$last = $text;
$lastsplit = $words;
return $words;
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии