| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace app\process\dataReport;
- use app\v1\logic\tool\GameActiveDayLogic;
- use Workerman\Crontab\Crontab;
- /**
- * 游戏活跃统计
- */
- class GameActive
- {
- public function onWorkerStart(): void
- {
- // 每2小时执行一次
- new Crontab('20 */2 * * *', function() {
- (new GameActiveDayLogic())->run();
- });
- }
- // {"type":"day","date":["2025-06-25","2025-06-26"]}
- public function run($args)
- {
- $params = $args ? json_decode($args, true) : [];
- if(!empty($params["type"]) && $params["type"] == "day"){
- return (new GameActiveDayLogic())->run($params);
- }
- return "无执行内容";
- }
- }
|