Demo 1
Array
(
[data] => 57
[mining] => 42
[process] => 11
[large] => 9
[patterns] => 9
[techniques] => 7
[sets] => 6
[past] => 5
[business] => 5
[machine] => 5
)
======================
Text: data mining - google search g o o g l e please click here if you are not redirected within a few seconds all images books news...
Total Keywords: 367
======================
Demo1.php
<?php
//Top Keywords as an array
$tm = new TextMiner();
//add any number of files and or text
$tm->addFile("http://www.google.com/search?q=data+mining");
$tm->addText("Text can be added this way.");
$tm->process();//should be called before accessing keywords
printa($tm->getTopKeywords(10));
echo $tm->printSummary();
?>