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

Demo 1

Array
(
    [data] => 54
    [mining] => 39
    [process] => 11
    [large] => 9
    [patterns] => 9
    [techniques] => 6
    [sets] => 6
    [past] => 5
    [examples] => 4
    [search] => 3
)
======================
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: 336
======================

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();
        
?>