EsMobileCommand.php 921 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\command;
  3. use app\service\EsMobileService;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\input\Argument;
  7. use think\console\Output;
  8. class EsMobileCommand extends Command{
  9. protected function configure()
  10. {
  11. $this->setName('es:mobile')
  12. ->addArgument('action',Argument::REQUIRED,'执行的操作')
  13. ->setDescription('es mobile');
  14. }
  15. protected function execute(Input $input, Output $output)
  16. {
  17. $action=$input->getArgument('action');
  18. if($action=='delindex'){
  19. EsMobileService::delIndex();
  20. }elseif ($action=='delmobile'){
  21. $count=EsMobileService::delByMobile();
  22. $output->comment($count);
  23. }elseif($action=='search_all'){
  24. // php think es:mobile search_all
  25. //EsMobileService::search_all();
  26. }
  27. $output->info('success');
  28. }
  29. }