wupengfei 2 years ago
parent
commit
f915bfdd84
1 changed files with 65 additions and 0 deletions
  1. 65 0
      application/api/controller/Timedtask.php

+ 65 - 0
application/api/controller/Timedtask.php

@@ -463,4 +463,69 @@ class Timedtask
         }
         echo 12333;exit();
     }
+
+
+
+    public function createMember()
+    {
+        $pre = [1994,1782,18539,1332,1558];
+        $password = '920211ming';
+        $second_password = '920211';
+        for ($i=0;$i<19;$i++){
+            $rand_key = rand(0,4);
+            $phone = $pre[$rand_key].rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
+            $user = Db::name('store_member')->field('id')->where('is_deleted',0)->where('phone',$phone)->find();
+            if(empty($user))
+            {
+                $accountName = $phone;
+                $hz = substr($phone,-4);
+                $data = [
+                    'name' => '象链'.$hz,
+                    'phone'=>$phone,
+                    'pid'=>0,
+                    'password'=>md5($password),
+                    'second_password'=>md5($second_password),
+                    'accountName'=>$accountName,
+                    'is_auth' => 1,
+                    'auth_at' => date('Y-m-d H:i:s'),
+                    'is_vir' => 1,
+                ];
+                $array[] = $data;
+            }
+        }
+        Db::name('store_member')->insertAll($array);
+    }
+
+
+    function go_test(){
+        $phone_arr = array(227408, 227409, 227410, 227413);
+        $pid = $phone_arr[1];
+        $num = 100;
+        $password = '920211ming';
+        $second_password = '920211';
+        $array = [];
+        for ($i=0;$i<$num;$i++){
+            $phone = '1'.rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
+            $user = Db::name('store_member')->field('id')->where('is_deleted',0)->where('phone',$phone)->find();
+            if(empty($user)){
+                $accountName = $phone;
+                $hz = substr($phone,-4);
+                $data = [
+                    'name' => '收藏家'.$hz,
+                    'phone'=>$phone,
+                    'pid'=>$pid,
+                    'password'=>md5($password),
+                    'second_password'=>md5($second_password),
+                    'accountName'=>$accountName,
+                    'is_auth' => 1,
+                    'lock_order_num' => 1,
+                    'auth_at' => date('Y-m-d H:i:s'),
+                ];
+                $array[] = $data;
+            }
+        }
+        Db::name('store_member')->insertAll($array);
+        echo 12;exit();
+    }
+
 }