Demo 0 | Demo 1 | Demo 2 | Demo 3 | Demo 4 | Demo 5 | Code | Matt Smith

Demo 0

data, mining, learning, software, information, analysis, machine, archived, edit, patterns
======================
Text: data mining - wikipedia jump to content main menu main menu move to si...
Total Keywords: 4463
======================

Demo0.php

<?php

//Demo: Top Keywords as a comma separated string

$tm = new TextMiner();

//add any number of files and or text
$tm->addFile("http://en.wikipedia.org/wiki/Data_mining");
$tm->addFile("http://freebase.com/search?limit=30&start=0&query=data+mining");
$tm->addText("Data mining text can also be added this way.");

$tm->process();//should be called before accessing keywords

printa($tm->getTopKeywords(10,false));
echo 
$tm->printSummary();
        
?>