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

Demo 1

Array
(
    [data mining] => 39
    [mining process] => 8
    [large data] => 5
    [data sets] => 5
    [mining data] => 5
    [mining techniques] => 4
    [identify patterns] => 2
    [mining works] => 2
    [raw data] => 2
    [process data] => 2
)
======================
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 nGrams: 351
======================

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->convertToLower TRUE// optional

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

printa($tm->getTopNGrams(10));
echo 
$tm->printSummary();
        
?>