PHP Classes

File: howtouse.php

Recommend this page to a friend!
  Classes of Alfan Farizki Wicaksono   IDN Stemmer   howtouse.php   Download  
File: howtouse.php
Role: Example script
Content type: text/plain
Description: How to use this class ?
Class: IDN Stemmer
Compute stem strings from Indonesian words
Author: By
Last change:
Date: 15 years ago
Size: 149 bytes
 

Contents

Class file image Download
<?php

include_once 'IDNstemmer.php';

$word = "pemukulan";

$st = new IDNstemmer();

echo
"stemming result : ".$st->doStemming($word);

?>