截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Hello.php 592B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\admin\command;
  3. use think\console\Command;
  4. use think\console\Input;
  5. use think\console\input\Argument;
  6. use think\console\input\Option;
  7. use think\console\Output;
  8. use think\facade\Db;
  9. class Hello extends Command
  10. {
  11. protected function configure()
  12. {
  13. $this->setName('hello')
  14. ->setDescription('Say Hello');
  15. }
  16. protected function execute(Input $input, Output $output)
  17. {
  18. $data = [
  19. 'number' => mt_rand(100000, 999999),
  20. 'create_time' => time()
  21. ];
  22. Db::name('test_crontab')->insert($data);
  23. }
  24. }