org_heigl/textstatistics 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

org_heigl/textstatistics

Composer 安装命令:

composer require org_heigl/textstatistics

包简介

Get statistics from a given text

README 文档

README

Calculate text-statistics including Sylables, Flesch-Reading-Ease (english and german) and such things.

Build Status Scrutinizer Code Quality Code Climate StyleCI Coverage Status

Latest Stable Version Total Downloads License composer.lock

Why

The one other implementation davechild/textstatistics sadly only implements statistics for english texts. That sadly didn't work for texts with f.e. german umlauts. So I decided to implement some of the algorithms again using work I already did for a hyphenator.

That's why f.e. the syllable-calculation differs.

Installation

TextStatistics is best installed using composer

$ composer require org_heigl/textstatistics

Usage

The different Calculators all implement a common CalculatorInterface and therefore all provide a calculate-Method that expects a Text-Object containing the Text to be calculated.

Currently these Statistics are avalable:

  • Average Sentence Length
  • Average Syllables per word
  • Character-Count (including Whitespace)
  • Character-Count (excluding whitespace)
  • Flesch-Kincaid Grade Level
  • Flesch-Reading-Ease for English texts
  • Flesch-Reading-Ease for German texts
  • Flesch-Reading-Ease School-Grade measurement
  • Sentence-Count
  • Max Syllables in Sentence
  • Max Words in Sentence
  • Syllable-Count
  • Wiener Sachtext-Formel 1, 2, 3 and 4
  • Word-Count
  • Max Syllables in Word
  • Number of words with minimum N characters
  • Percentage of Words with minimum N characters
  • Number of words with minimum N syllables
  • Percentage of words with minimum N syllables
  • Number of words with only N syllables
  • Percentage of words with only N syllables

There are Factory-Methods for each statistic available, so getting one of the statistics requires the following line of code:

$text = new \Org_Heigl\TextStatistics\Text($theText);
$wordCount =\Org_Heigl\TextStatistics\Service\WordCounterFactory::getCalculator()->calculate($text);
$fleschReadingEase = /Org_Heigl\TextStatistics\Service\FleschReadingEaseCalculatorFactory::getCalculator()->calculate($text);

You can also add multiple Calculators to the TextStatisticsGenerator and retrieve multiple Statistics in one go like this:

$text = new \Org_Heigl\TextStatistics\Text($theText);

$statGenerator = new \Org_Heigl\TextStatistics\TextSTatisticsGenerator();
$statGenerator->add('wordCount', \Org_Heigl\TextStatistics\Service\WordCounterFactory::getCalculator());
$statGenerator->add('flesch', \Org_Heigl\TextStatistics\Service\FleschReadingEaseCalculatorFactory::getCalculator());

print_R($statGenerator->calculate($text));

// array(
//    'wordCount' => xx,
//    'flesch' => yy,
// )

统计信息

  • 总下载量: 2.31k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-10-12

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固