1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\common\command;
- use app\service\EsMobileService;
- use think\console\Command;
- use think\console\Input;
- use think\console\input\Argument;
- use think\console\Output;
- class EsMobileCommand extends Command{
- protected function configure()
- {
- $this->setName('es:mobile')
- ->addArgument('action',Argument::REQUIRED,'执行的操作')
- ->setDescription('es mobile');
- }
- protected function execute(Input $input, Output $output)
- {
- $action=$input->getArgument('action');
- if($action=='delindex'){
- EsMobileService::delIndex();
- }elseif ($action=='delmobile'){
- $count=EsMobileService::delByMobile();
- $output->comment($count);
- }elseif($action=='search_all'){
- // php think es:mobile search_all
- //EsMobileService::search_all();
- }
- $output->info('success');
- }
- }
|