GeForce Manager
PHP Advanced
C:
/
xampp
/
htdocs
/
Ajaji
/
libraries
/
vendor
/
wamania
/
php-stemmer
/
src
/
Name
Size
Perms
Actions
📁
Stemmer
157264 B
0777
Permissions
Delete
📄
StemmerManager.php
498 B
0666
Edit
Perms
Delete
Editing:
StemmerManager.php
<?php namespace Wamania\Snowball; class StemmerManager { /** @var array */ private $stemmers; public function __construct() { $this->stemmers = []; } /** * @throws NotFoundException */ public function stem(string $word, string $isoCode): string { if (!isset($this->stemmers[$isoCode])) { $this->stemmers[$isoCode] = StemmerFactory::create($isoCode); } return $this->stemmers[$isoCode]->stem($word); } }
Cancel