php-summary

📝 Automatically summarises text, using a naive summarisation algorithm

LGPL-3.0 License

Downloads
23.5K
Stars
32
Committers
2

PHP Summary

A PHP library to automatically summarise text using a naive summerisation algorithm.

This summerisation algorithm in use takes the key sentence from each paragraph. It then strings these resulting sentences together to form the summary.

For more details on this algorithm, see this blog post by Shlomi Babluki.

Installation

Require this package, with Composer, in the root directory of your project.

composer require divineomega/php-summary

Usage

To use PHP Summary, you should create a new SummaryTool object, passing it the text content of your article. You can then call its getSummary method to retrieve the shortened summary of the article.

Note: The article content must have its paragraphs seperated by two new line characters.

$summary = (new SummaryTool($content))->getSummary();