SwishResult::stem

(PECL swish >= 0.1.0)

SwishResult::stemStems the given word

Opis

SwishResult::stem ( string $word ) : array
Ostrzeżenie

Ta funkcja jest w stadium EKSPERYMENTALNYM. Oznacza to, że zachowanie funkcji, jej nazwa, w zasadzie wszystko udokumentowane tutaj może zostać zmienione w przyszłych wersjach PHP bez wcześniejszego uprzedzenia. Używaj tej funkcji na własne ryzyko.

Stems the word based on the fuzzy mode used during indexing. Each result object is linked with its index, so the results are based on this index.

Parametry

word

The word to stem.

Zwracane wartości

Returns array containing the stemmed word variants (usually just one).

Błędy/Wyjątki

Throws SwishException on error.

Przykłady

Przykład #1 Basic SwishResult::stem() example

<?php

try {

    
$swish = new Swish("ext/swish/tests/index.swish-e");
    
$results $swish->query("testing OR others");

    if (
$result $results->nextResult()) {
        
var_dump($result->stem("testing")); //the results fully depend on the stemmer used in the index
        
var_dump($result->stem("others"));
    }

} catch (
SwishException $e) {
    echo 
"Error: "$e->getMessage(), "\n";
}

?>

Powyższy przykład wyświetli coś podobnego do:

array(1) {
  [0]=>
  string(4) "test"
}
array(1) {
  [0]=>
  string(5) "other"
}

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top