Function Stemmer_EN->stem

Definitions

sources/lang_stemmer_EN.php

  • Stems a word. Simple huh?
  • Visibility: public
  • Is abstract?: No
  • Is static?: Yes
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$word string No No required parameter N/A N/A Word to stem

Returns

  • Stemmed word
  • Type: string
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Stems a word. Simple huh?
 *
 * @param  string $word Word to stem
 * @return string Stemmed word
 */

public static function stem($word)