Login   Register  
PHP Classes
elePHPant
Icontem

File: howtouse.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2009-11-25 22:01
Size: 149 bytes
 

Contents

Class file image Download
<?php

include_once 'IDNstemmer.php';

$word "pemukulan";

$st = new IDNstemmer();

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

?>