PHP code example of nadar / stemming

1. Go to this page and download the library: Download nadar/stemming library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nadar / stemming example snippets



mmed = \Nadar\Stemming\Stemm::stem('drinking', 'en');

echo $stemmed; // output: "drink"

echo \Nadar\Stemming\Stemm::stemPhrase('I am playing drums', 'en');

./vendor/bin/phpunit tests

./vendor/bin/php-cs-fixer fix src/