AreaCommand.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\Area;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\Output;
  7. use think\Db;
  8. class AreaCommand extends Command{
  9. protected function configure()
  10. {
  11. $this->setName('area')->setDescription('地区信息');
  12. }
  13. protected function execute(Input $input, Output $output)
  14. {
  15. $this->make();
  16. }
  17. public function make()
  18. {
  19. $exists= Area::find(1);
  20. if(!$exists){
  21. Db::execute("truncate table area");
  22. $arr=json_decode(file_get_contents(EXTEND_PATH.'/pcas-code.json'));
  23. $this->circle($arr);
  24. }
  25. }
  26. protected function circle($arr,$code=null){
  27. foreach ($arr as $area){
  28. if($code){
  29. $temp=Area::where('code',$code)->find();
  30. }else{
  31. $temp=[];
  32. }
  33. Area::insert([
  34. 'pid'=>$temp['id']??0,
  35. 'name'=>$area->name,
  36. 'code'=>$area->code,
  37. 'level'=>($temp['level']??0)+1,
  38. ]);
  39. if(!empty($area->children)) {
  40. $this->circle($area->children,$area->code);
  41. }
  42. }
  43. }
  44. }