Many articles on Internet are alike but they do not have at all the same
importance as they don't have the same content.Because the advices for
choose a good title are always the same, bloggers and other copy-writers
are inclined to choose similar titles when they come to talk about the same
theme.
Users hate wasting their time.For many,time is money.And they won't read
all the articles they see on the same theme exactly like you won't never
click on every links on a search results page.Sometimes they click on a
link that leads to your article but unfortunately they return because your
article is very long and the start is boring...
How then,bring the users to know what to choose and give them not the
feeling of waste of time but the good feeling and the desire to read
again many articles or just your articles?
The present package is built with the intention to summarize copy and show
your article in its best angle.
You can use it to get a summary of a book, an article or anything else that
contains text to be understood.
This package can return the most relevant phrase or phrases , paragraph or
paragraphs ,the shortest or the longest to summarize your content. And the
number of phrase or paragraph to show can be chosen.
------------------------------How to use-----------------------------------
<?php
require_once 'KeywordGenerator.php';
require_once 'summarizer.class.php';
set_time_limit(0);//useless in most of cases;
$kwObj =new summarizer( new KeywordGenerator);
$str ="
Many articles on Internet are alike but they do not have at all the same
importance as they don't have the same content.Because the advices for
choose a good title are always the same, bloggers and other copy-writers
are inclined to choose similar title when they come to talk about the same
theme.
Users hate wasting their time.For many,time is money.And they won't read
all the articles they see on the same theme exactly like you won't never
click on every links on a search results page.Sometimes they click on a
link that leads to your article but unfortunately they return because your
article is very long and the start is boring...
How then,bring the users to know what to choose and give them not the
feeling of waste of time but the good feeling and the desire to read
again many articles or just your articles?
The present package is built with the intention to summarize copy and show
your article in its best angle.
You can use it to get a summary of a book, an article or anything else that
contains text to be understood.
This package can return the most relevant phrase or phrases , paragraph or
paragraphs ,the shortest or the longest to summarize your content. And the
number of phrase or paragraph to show can be chosen.
";
//show the most relevant paragraph.
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'paragraph').'</div>');
//show most relevant phrase.
echo ('<div style="width:800px">'.$kwObj->getSummary($str).'</div>');
//show 3 short most relevant phrases
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'',true,true,null,
true,3).'<div>');
//show 3 long most relevant phrases
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'',false,true,null
,true,3).'<div>');
//show the short most relevant phrase
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'',true,true,null,
true,1).'<div>');
//show the long most relevant phrase
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'',false,true,null,
true,1).'<div>');
//show 3 short most relevant paragraphs
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'paragraph',true
,true,null,true,3).'<div>');
//show 6 long most relevant paragraphs
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'paragraph',false,
,true,null,true,6).'<div>');
//show the short most relevant paragraphs
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'paragraph',true,
true,null,true,1).'<div>');
//show the long most relevant paragraphs
echo ('<div style="width:800px">'.$kwObj->getSummary($str,'paragraph',false,
true,null,true,1).'<div>');
/***remove the last parameter will lead to show a full summarize of your
content with only all relevant paragraphs or phrases, longest or shortest
according respectively to parameter 2 and 3.When you specify a language be sure
to have first create the ignore_language file to avoid fatal error *************/
?>
for some how to use example :
see the files testsummarizer{$i}.php ...
Report improvement, bugs and other in the forum or feel free to contact me at
leizmo@gmail.com
|