DelMobileCommand.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\Mobile;
  4. use app\service\EsMobileService;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. use think\Db;
  9. class DelMobileCommand extends Command{
  10. protected function configure()
  11. {
  12. $this->setName('del:mobile')->setDescription('订单超时关闭');
  13. }
  14. protected function execute(Input $input, Output $output)
  15. {
  16. // for ($i=135377576;$i<135951454;$i++){
  17. // $exists=Mobile::where('id',$i)->value('id');
  18. // try {
  19. // $existsInEs=es()->get([
  20. // 'index'=>EsMobileService::index(),
  21. // 'id'=>$i
  22. // ]);
  23. // }catch (\Exception $exception){
  24. // $existsInEs=false;
  25. // }
  26. // if($exists && $existsInEs){
  27. // EsMobileService::delMobiles([$i]);
  28. // $this->output->info("删除号码:".$i);
  29. // user_log('DelMobileCommand',$i);
  30. // }
  31. // }
  32. $count=0;
  33. Mobile::where('type',1)->where('id','<',137372423)->chunk(10000,function ($mobiles)use (&$count){
  34. foreach ($mobiles as $mobile){
  35. try {
  36. $existsInEs=es()->get([
  37. 'index'=>EsMobileService::index(),
  38. 'id'=>$mobile['id']
  39. ]);
  40. }catch (\Exception $exception){
  41. $existsInEs=false;
  42. }
  43. if($existsInEs){
  44. EsMobileService::delMobiles([$mobile['id']]);
  45. $count+=1;
  46. $this->output->info($count);
  47. user_log('DelMobileCommand',$mobile['id']);
  48. }else {
  49. // $this->output->info($mobiles);
  50. // print_r($mobile);
  51. }
  52. }
  53. });
  54. }
  55. }