|
@@ -23,6 +23,7 @@ class UnicomGuangZhou extends MobileGetService {
|
|
|
$this->account['password']=Env::get('api_config.guangzhou_liantong_password','7yevxl00');
|
|
|
}
|
|
|
|
|
|
+ // 广州
|
|
|
public function selectNo(){
|
|
|
// $area=json_decode(file_get_contents(__DIR__.'/unicom_henan.json'),true);
|
|
|
$area=json_decode(file_get_contents(__DIR__.'/unicom_guangzhou.json'),true);
|
|
@@ -56,6 +57,53 @@ class UnicomGuangZhou extends MobileGetService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ // 联通王卡K计划
|
|
|
+ public function selectNoK(){
|
|
|
+ $redis_key = 'gzltk_area';
|
|
|
+ $area_i=redis()->get($redis_key);
|
|
|
+ if(!$area_i || $area_i==34){
|
|
|
+ $area_i = 1;
|
|
|
+ }
|
|
|
+ var_dump($area_i);
|
|
|
+
|
|
|
+ $area=json_decode(file_get_contents(__DIR__.'/unicom_henan.json'),true);
|
|
|
+ foreach ($area as $k=>$item){
|
|
|
+ // 每次导入10个地区数据
|
|
|
+ if( $k > (10*($area_i-1)) && (10*$area_i) < $k ){
|
|
|
+ $body=$this->body([
|
|
|
+ 'provinceCode'=>(string)$item['PROVINCE_CODE'],
|
|
|
+ 'cityCode'=>(string)$item['CITY_CODE'],
|
|
|
+ 'qryType'=>'02',
|
|
|
+ 'searchCategory'=>'3',
|
|
|
+ 'goodsId'=>'982203315714',
|
|
|
+ 'searchType'=>'',
|
|
|
+ 'searchValue'=>'',
|
|
|
+ 'amounts'=>'100',
|
|
|
+ ]);
|
|
|
+ $list=jsonPost(self::$apiList['api'],json_encode($body,320));
|
|
|
+ $list = json_decode($list, true);
|
|
|
+ $arr=$list['body']['numArray']??[];
|
|
|
+ $make=array_chunk($arr,12);
|
|
|
+ foreach ($make as $chunkArr){
|
|
|
+ $this->addMobile([
|
|
|
+ 'no'=>$chunkArr[0],
|
|
|
+ 'city'=>$item['CITY_NAME'],
|
|
|
+ 'brand'=>'中国联通',
|
|
|
+ 'proxy_id'=>'90',
|
|
|
+ 'describe'=>'29元/月,30G定向流量,0.1元每分钟,流量超出5元/G,短信0.1/条',
|
|
|
+ 'api_goods_id'=>'982203315714',
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ usleep(200000);
|
|
|
+ if( $k%10==0 && $k!=0 ){
|
|
|
+ redis()->set($redis_key,$area_i+1);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
protected function token(){
|
|
|
return Cache::remember('gzlt_token',function (){
|
|
|
/*$res=$this->post(self::$apiList['login'],[
|