BackupCommand.php 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. declare (strict_types = 1);
  3. namespace catcher\command\Tools;
  4. use catcher\CatchAdmin;
  5. use catcher\facade\FileSystem;
  6. use catcher\library\BackUpDatabase;
  7. use catcher\library\Zip;
  8. use think\console\Command;
  9. use think\console\Input;
  10. use think\console\input\Argument;
  11. use think\console\input\Option;
  12. use think\console\Output;
  13. use think\facade\Db;
  14. class BackupCommand extends Command
  15. {
  16. protected $table;
  17. protected function configure()
  18. {
  19. // 指令配置
  20. $this->setName('backup:data')
  21. ->addArgument('tables', Argument::REQUIRED, 'backup tables')
  22. ->setDescription('backup data you need');
  23. }
  24. protected function execute(Input $input, Output $output)
  25. {
  26. $tables = $this->input->getArgument('tables');
  27. (new BackUpDatabase)->done($tables);
  28. $output->info('succeed!');
  29. }
  30. }