SwishResult->stem
(PECL swish:0.1-0.3.0)
SwishResult->stem — Stems the given word
说明
array SwishResult->stem
( string $word
)
Warning
本函数是实验性的。本函数的行为,包括函数å称以åŠå…¶å®ƒä»»ä½•关于本函数的文档å¯èƒ½ä¼šåœ¨æ²¡æœ‰é€šçŸ¥çš„æƒ…å†µä¸‹éš PHP 以åŽçš„å‘布而改å˜ã€‚使用本函数风险自担。
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.
傿•°
- word
-
The word to stem.
返回值
Returns array containing the stemmed word variants (usually just one).
错误ï¼å¼‚常
Throws SwishException on error.
范例
Example#1 Basic 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 th index
var_dump($result->stem("others"));
}
} catch (SwishException $e) {
echo "Error: ", $e->getMessage(), "\n";
}
?>
上例的输出类似于:
array(1) { [0]=> string(4) "test" } array(1) { [0]=> string(5) "other" }