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

Demo 1

Array
(
    [data] => 53
    [mining] => 36
    [twitter] => 18
    [charlieintel] => 10
    [process] => 9
    [hours] => 8
    [ago] => 8
    [large] => 8
    [patterns] => 8
    [4] => 6
)
======================
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 news books...
Total Keywords: 480
======================

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