123456789101112131415161718192021 |
- <?php
- use app\admin\model\Admin;
- use Workerman\Lib\Timer;
- use Workerman\Worker as WO;
- class AdminDisable extends Com{
- public static function run(){
- $work=self::newWorker();
- $work->onWorkerStart=function (WO $worker){
- Timer::add(3,function ()use ($worker){
- $userNum=Admin::where('id','>',1)
- ->where('logintime','<',strtotime('-1month'))
- ->where('status','normal')
- ->update(['status'=>'hidden']);
- $userNum && self::log("禁用了{$userNum}个管理员");
- });
- };
- }
- }
- AdminDisable::run();
|