aboustayyef / summarizer
a utility class that summarizes text based on the flipboard method
dev-master
2015-09-20 14:17 UTC
Requires
- camspiers/porter-stemmer: ^1.0
Requires (Dev)
- phpspec/phpspec: 2.2.*
This package is not auto-updated.
Last update: 2024-11-13 11:15:54 UTC
README
#Summary
This is a utility class for extracting a summary from large texts.
##Usage
<?php
$document = new Aboustayyef\Summarizer;
$document->text = <<<EOD
This is where you put a text. It can include <em>tags</em>. But they will be removed.
EOD;
echo $document->summarize(2); // number of sentences wanted
?>