123456789101112131415161718192021 |
- <?php
- namespace app\admin\command;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- use think\Db;
- class Test extends Command
- {
- protected function configure()
- {
- $this->setName('test')->setDescription('Here is the remark ');
- }
- protected function execute(Input $input, Output $output)
- {
- $acocunt =Db::name('Account')->where("is_del=0 and status>=1 and expiretime<='".date("Y-m-d H:i:s")."'")->select();
- var_dump($acocunt);
- $output->writeln("AccountExpire:");
- }
- }
|