101infotech/data2monthly
Composer 安装命令:
composer require 101infotech/data2monthly
包简介
This package converts your data using a timestamp field to ordered data monthly or yearly.
README 文档
README
Using this package you will be able to converts your collection using a timestamp field to order data monthly or yearly and calculate monthly/yearly expenses. You can use this package to build some expenses app and apply in chart.js efficiently.
Require this package in your composer.json and update composer.
composer require 101infotech/data2monthly
Code Examples
use Infotech\Data2Monthly\Monthly;
▶ To get a ordered monthly data upto current month.
$data = Visitors::all();
Monthly::current($data,'created_at'));
// $data must be a Collection
// 'created_at' exist in collection, holds a timestamp or date
Result: It counts the data found on the respective month and returns an array.
array:5 [▼
0 => 0
1 => 0
2 => 0
3 => 0
4 => 1
]
▶ To get a sum of a field grouped monthly.
$data = Expenses::all();
Monthly::expenseMonthly($data,'created_at','price');
Result: It sums all the 'price' field and group monthly.
array:12 [▼
0 => 150
1 => 900
2 => 300
3 => 600
4 => 300
5 => 450
6 => 0
7 => 0
8 => 0
9 => 0
10 => 0
11 => 0
]
▶ To get a data counted monthly data upto current month according to a given year.
$data = Expenses::all();
Monthly::currentWithYear($data,'created_at','price','2021'));
Result: It counts the data found on the respective month upto current month and with respective year and returns an array.
array:6 [▼
0 => 0
1 => 0
2 => 0
3 => 0
4 => 2
5 => 0
]
▶ Some List of Available Codes
Monthly::current($data,'created_at'));
Monthly::monthly($data,'created_at'));
Monthly::yearly($data,'created_at'));
Monthly::expenseCurrent($data,'created_at','price'));
Monthly::expenseMonthly($data,'created_at','price));
Monthly::expenseYearly($data,'created_at','price'));
Monthly::currentWithYear($data,'created_at','price','2021'));
Monthly::monthlyWithYear($data,'created_at','price','2021'));
▶ Using in chart.js
$dataArr = Monthly::current($data,'created_at'));
<script>
let barGraph = <?=json_encode($dataArr);?>
</script>
101infotech/data2monthly 适用场景与选型建议
101infotech/data2monthly 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 95 次下载、GitHub Stars 达 9, 最近一次更新时间为 2021 年 05 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 101infotech/data2monthly 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 101infotech/data2monthly 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 95
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-27