| 123456789101112131415161718192021222324252627 |
- <?php
- namespace app\process\dataReport;
- use app\v1\logic\tool\GameTotalMonthLogic;
- use Workerman\Crontab\Crontab;
- /**
- * 注册付费按月
- */
- class GameTotalMonth
- {
- public function onWorkerStart(): void
- {
- // 每2小时执行一次
- new Crontab('0 */2 * * *', function() {
- (new GameTotalMonthLogic())->run();
- });
- }
- // {"date":["2025-06-25","2025-06-26"]}
- public function run($args)
- {
- $params = $args ? json_decode($args, true) : [];
- return (new GameTotalMonthLogic())->run($params);
- }
- }
|