IdImportCommand.php 753 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\Mobile;
  4. use app\common\model\MobileOrder;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. use think\Db;
  9. use think\Log;
  10. class IdImportCommand extends Command{
  11. protected function configure()
  12. {
  13. $this->setName('id:import')->setDescription('订单超时关闭');
  14. }
  15. protected function execute(Input $input, Output $output)
  16. {
  17. $count=0;
  18. Db::name('mobile')->whereNotExists("select id from mobileid where mobileid.id=mobile.id")->field('id')->chunk(100000,function ($ids)use ($count){
  19. $count+=count($ids);
  20. Db::name('mobileid')->insertAll($ids);
  21. $this->output->info($count);
  22. });
  23. }
  24. }