123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\model\Area;
- use app\common\model\AreaApi;
- use app\common\service\ZopOrderService;
- /**
- * 测试接口
- */
- class Test extends Api
- {
- protected $noNeedLogin = ['*'];
- protected $noNeedRight = ['*'];
- /**
- * 测试方法
- *
- * @return void
- */
- public function index()
- {
- // common_log('aaa');
- // $data = array("key1", "key2", "key3", "key4", "key5", "key6", "key7", "key8", "key9", "key10", "key11", "key12", "key13", "key14", "key15", "key16");
- // dd(array_chunk($data, 5), array_column(array_chunk($data, 5), 0));
- // $params = [
- // 'channel' => '08-2278-ae1q-9999',
- // 'goodsId' => '982012220836',
- // 'resourceContents' => [
- // [
- // 'content' => 'aaa',
- // 'sort' => 1
- // ]
- // ]
- // ];
- // $result = ZopOrderService::resourceUpload($params);
- // dd($result);
- // $sum = 0;
- // $codes = ZopOrderService::PROVINCE_CODE;
- // // $code = 17;
- // foreach ($codes as $code => $name) {
- // $params = [
- // 'provinceCode' => $code
- // ];
-
- // $result = ZopOrderService::postInfo($params);
-
- // if ($result['code'] == 0) {
- // $data = $result['data'];
- // foreach ($data as $val) {
- // $val['code'] = $code;
- // AreaApi::create($val);
- // }
- // }
- // }
- // $provinces = Area::where('level', 1)->select();
- // $failIds = [];
- // foreach ($provinces as $province) {
- // $shortName = $province->shortname ?? '';
- // if (empty($shortName)) {
- // $failIds[] = $province->id;
- // continue;
- // }
- // // 查询省份对应的code
- // $areaApi = AreaApi::where('postProvinceName', $shortName)->find();
- // if (empty($areaApi)) {
- // $failIds[] = $province->id;
- // continue;
- // }
- // $province->post_code = $areaApi->postProvinceCode;
- // $province->num_code = $areaApi->numProvinceCode;
- // $province->save();
- // }
- // dd($failIds);
- // $cities = Area::where('level', 2)->select();
- // $failIds = [];
- // foreach ($cities as $city) {
- // $shortName = $city->shortname ?? '';
- // $pid = $city->pid ?? 0;
- // if (empty($shortName)) {
- // $failIds[] = $city->id;
- // continue;
- // }
- // $province = Area::where('id', $pid)->find();
- // if (empty($province)) {
- // $failIds[] = $city->id;
- // continue;
- // }
- // $postProvinceCode = $province->post_code ?? '';
- // // 查询省份对应的code
- // $areaApi = AreaApi::where([
- // 'postProvinceCode' => $postProvinceCode,
- // 'postCityName' => ['like', $shortName . '%']
- // ])->find();
- // if (empty($areaApi)) {
- // $failIds[] = $city->id;
- // continue;
- // }
- // $city->post_code = $areaApi->postCityCode;
- // $city->num_code = $areaApi->numCityCode;
- // $city->save();
- // }
- // $districts = Area::where('level', 3)->select();
- // $failIds = [];
- // foreach ($districts as $district) {
- // $shortName = $district->shortname ?? '';
- // $pid = $district->pid ?? 0;
- // if (empty($shortName)) {
- // $failIds[] = $district->id;
- // continue;
- // }
- // $city = Area::where('id', $pid)->find();
- // if (empty($city)) {
- // $failIds[] = $district->id;
- // continue;
- // }
- // $postCityCode = $city->post_code ?? '';
- // // 查询省份对应的code
- // $areaApi = AreaApi::where([
- // 'postCityCode' => $postCityCode,
- // 'postDistrictName' => ['like', $shortName . '%']
- // ])->find();
- // if (empty($areaApi)) {
- // $failIds[] = $district->id;
- // continue;
- // }
- // $district->post_code = $areaApi->postDistrictCode;
- // $district->save();
- // }
- // dd($failIds);
- }
- }
|