资 源 简 介
Moved development to -> https://github.com/simplicitylab/php-dutch-stemmer
PHP Dutch Stemmer is a PHP class that stems Dutch words. It based on the algorithm that is described on the page http://snowball.tartarus.org/algorithms/dutch/stemmer.html . It is being distributed under a LGPL license so that it can be used in a commercial setting.
In linguistic morphology, stemming is the process for reducing inflected (or sometimes derived) words to their stem, base or root form – generally a written word form.
http://en.wikipedia.org/wiki/Stemming
It can be used in search engines, text mining , classifiers, etc. For example you can search for "fish" and with stemming also return words like fishing or fishes.
How to use the stemmer
require_once("dutchstemmer.php");
$stemmer = new DutchStemmer();
echo "lichamelijk : ". $stemmer->stemWord("lichamelijk");
Some sample out