CreateUserAddress.php 762 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace app\admin\command;
  3. use datamodel\Users;
  4. use logicmodel\ChainLogic;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. class CreateUserAddress extends Command
  9. {
  10. protected function configure()
  11. {
  12. $this->setName('create:user:address');
  13. }
  14. protected function execute(Input $input, Output $output)
  15. {
  16. Users::whereNull('new_address')->chunk(1,function ($data) use ($output) {
  17. collection($data)->each(function (Users $users) use ($output) {
  18. try {
  19. $users->addAddress();
  20. }catch (\Exception $e){
  21. $output->error("user:{$users['id']} {$e->getMessage()}");
  22. }
  23. });
  24. });
  25. }
  26. }