dwo/aggregator
最新稳定版本:v1.3.3
Composer 安装命令:
composer require dwo/aggregator
包简介
collect and aggregate data for statistical analysis
README 文档
README
Aggregator
collect, group & aggregate data
$collector = new Collector(array('country')); $collector->addEntry(['country' => 'DE', 'counts'=>1]); $collector->addEntry(['country' => 'DE', 'counts'=>2]); $collector->addEntry(['country' => 'AT', 'counts'=>2]); $collector->addEntry(['country' => 'AT', 'counts'=>3]); $aggregationGroup = Aggregator::aggregate($collector); print_r($aggregationGroup->toArray());
Array ( [DE] => Array ( [country] => DE [counts] => 3 ) [AT] => Array ( [country] => AT [counts] => 5 ) )
Merger
merge two arrays
$origin = ['counts' => 1]; $merge = ['counts' => 2]; Merger::merge($origin, $merge); print_r($origin);
Array ( [counts] => 3 )
统计信息
- 总下载量: 209
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-23