aboustayyef/summarizer

一个基于flipboard方法总结文本的实用工具类

dev-master 2015-09-20 14:17 UTC

This package is not auto-updated.

Last update: 2024-10-02 10:40:11 UTC


README

#摘要

这是一个从大型文本中提取摘要的实用工具类。

##使用方法

<?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

?>