request->request('account'); $password = $this->request->request('password'); if (!$account || !$password) { $this->error(__('Invalid parameters')); } $ret = $this->auth->login($account, $password); if ($ret) { $data = ['userinfo' => $this->auth->getUserinfo()]; $this->success(__('Logged in successful'), $data); } else { $this->error($this->auth->getError()); } } /** * 手机验证码登录 * * @param string $mobile 手机号 * @param string $captcha 验证码 */ public function mobilelogin() { $mobile = $this->request->request('mobile'); $captcha = $this->request->request('captcha'); if (!$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } // $ret = session($mobile); $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find(); if (!$ret) { $this->error(__('Captcha is incorrect')); } if ($ret) { if ($ret['number'] != $captcha) { $this->error('验证码不正确'); } if(time()-$ret['create_time'] > 300) { $this->error('验证码超时'); } } $user = \app\common\model\User::getByMobile($mobile); if ($user) { if ($user->status != '1') { $this->error(__('Account is locked')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); if ($ret) { Sms::flush($mobile, 'mobilelogin'); $data = ['userinfo' => $this->auth->getUserinfo()]; $this->success(__('Logged in successful'), $data); } else { $this->error($this->auth->getError()); } } else { return $this->error('暂无账此号请去注册'); // $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []); } } /** * 注册会员 * * @param string $password 密码 * @param string $group_id 身份012 * @param string $mobile 手机号 * @param string $code 验证码 */ public function register() { $password = $this->request->request('password'); $mobile = $this->request->request('mobile'); $group_id = $this->request->request('group_id'); $username = $this->request->request('nickname'); $avatar = $this->request->request('avatar'); $openid = $this->request->request('openid'); if (!isset($username) || empty($username)) $username = $mobile; $code = $this->request->request('code'); if (!$username || !$password) { $this->error(__('Invalid parameters')); } if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } // $ret = session($mobile); $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find(); if (!$ret) { $this->error(__('Captcha is incorrect')); } if ($ret) { if ($ret['number'] != $code) { $this->error('验证码不正确'); } if(time()-$ret['create_time'] > 300) { $this->error('验证码超时'); } } if (!$group_id) { $group_id = 0; } $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id,$openid,$avatar); if ($ret) { $data = ['userinfo' => $this->auth->getUserinfo()]; $this->success(__('Sign up successful'), $data); } else { $this->error($this->auth->getError()); } } /** * 授权登录 * @param string $js_code code */ public function wechatLogin() { $config = [ 'app_id' => 'wxe02aa578255f9184', 'secret' => '5e184a450e2cb5331826ead2fd95157e', // 下面为可选项 // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名 'response_type' => 'array', ]; $app=Factory::miniProgram($config); $data = input('get.'); $res=$app->auth->session($data['js_code']); if (!isset($res['openid'])) return $this->error('请求失败'); $userInfo = Db::name('user')->where('openid',$res['openid'])->find(); if (!$userInfo) { return json(['code' => 101,'msg'=>'请先绑定手机号','data'=>$data]); } else { $user = \app\common\model\User::getByMobile($userInfo['mobile']); if ($user) { if ($user->status != '1') { $this->error(__('Account is locked')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); if ($ret) { Sms::flush($userInfo['mobile'], 'mobilelogin'); $data = ['userinfo' => $this->auth->getUserinfo()]; $this->success(__('Logged in successful'), $data); } else { $this->error($this->auth->getError()); } } } } /** * 绑定微信 * @param string $username 微信昵称 * @param string $avatar 微信头像 */ public function bin() { $user = $this->auth->getUser(); if (!empty($user['openid'])) return $this->error('您已经绑定过微信了'); $config = [ 'app_id' => 'wxe02aa578255f9184', 'secret' => '5e184a450e2cb5331826ead2fd95157e', // 下面为可选项 // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名 'response_type' => 'array', ]; $app=Factory::miniProgram($config); $data = input('get.'); $res=$app->auth->session($data['js_code']); if (!isset($res['openid'])) return $this->error('请求失败'); $data = input('get.'); $ins = [ 'openid' => $res['openid'], 'username' => $data['username'], 'avatar' => $data['avatar'], ]; $upd= Db::name('user')->where('id',$user['id'])->update($ins); if ($upd) { return $this->success('绑定成功'); } else { return $this->error('绑定失败'); } } /** * 重置密码 * * @param string $mobile 手机号 * @param string $newpassword 新密码 * @param string $captcha 验证码 */ public function resetpwd() { $mobile = $this->request->request("mobile"); $newpassword = $this->request->request("newpassword"); $captcha = $this->request->request("captcha"); if (!$newpassword || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } $user = \app\common\model\User::getByMobile($mobile); if (!$user) { $this->error(__('User not found')); } // $ret = session($mobile); $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find(); if (!$ret) { $this->error(__('Captcha is incorrect')); } if ($ret) { if ($ret['number'] != $captcha) { $this->error('验证码不正确'); } if(time()-$ret['create_time'] > 300) { $this->error('验证码超时'); } } //模拟一次登录 $this->auth->direct($user->id); $rets = $this->auth->changepwd($newpassword, '', true); if ($rets) { $this->success(__('Reset password successful')); } else { $this->error($this->auth->getError()); } } /** * 发送验证码 * * @param string $mobile 手机号 * @param string $type 1注册2忘记3修改密码 */ public function sendPhone() { $mobile = $this->request->param('mobile'); $type = $this->request->param('type'); if (!isset($type) || empty($type)) return $this->error('参数错误'); if ($type == 1) { $issetphone = Db::name('user')->where('mobile', $mobile)->find(); if (isset($issetphone)) return $this->error('此账号已存在'); } if ($type == 3) { $user = $this->auth->getUser(); $isuseourphone = Db::name('user')->where('id', $user['id'])->where('mobile', $mobile)->find(); if (!$isuseourphone) return $this->error('请使用本账号手机号修改密码'); } $number = rand(1000, 9999); $res = send_sms($mobile, 1, ['code' => $number]); if (isset($res['Message']) && $res['Message'] == "OK") { $data = [ 'mobile' =>$mobile, 'number' =>$number, 'create_time' =>time(), ]; Db::name('captcha')->insert($data); return $this->success('发送成功', $number); } else { return $this->error('发送失败'); } } /** * 用户信息 */ public function userInfo() { $user = $this->auth->getUser(); $data['id'] = $user['id']; $data['group_id'] = $user['group_id']; $data['level'] = $user['level']; $data['company'] = $user['company']; $data['mobile'] = $user['mobile']; $data['position'] = $user['position']; $data['shenhe_status'] = $user['shenhe_status']; $data['fuwu'] = $user['fuwu']; $data['luntan'] = $user['luntan']; $data['huodong'] = $user['huodong']; $data['avatar'] = $user['avatar']?$user['avatar']:config('site.httpurl')."/assets/img/qrcode.png"; $domain = strstr($data['avatar'], 'http'); if (!$domain) { $data['avatar'] = config('site.httpurl').$data['avatar']; } $data['username'] = $user['username']; $data['nickname'] = $user['nickname']; if ($user['group_id'] == 0 ) { unset($data['shenhe_status']); $data['zhiye'] = '个人'; $data['wanshan_status'] = 1; if (empty($user['nickname']) || empty($user['position']) || empty($user['company'])) { $data['wanshan_status'] = 0; } $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count(); $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count(); if (!empty($user['company'])) { $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count(); } else { $data['tongshi'] = 0; } } if ($user['group_id'] == 1 ) { $data['zhiye'] = '商家'; // $data['wanshan_status'] = 1; // // $iswansahn = Db::name('user_shangjia')->where('uid',$user['id'])->find(); // // $data['shangjia_wanshang_status'] = 1; // // if (!$iswansahn) { // $data['shangjia_wanshang_status'] = 0; // } // if (empty($user['nickname']) || empty($user['position']) || empty($user['company']) ) { // // } $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count(); $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count(); if (!empty($user['company'])) { $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count(); } else { $data['tongshi'] = 0; } } if ($user['group_id'] == 2 ) { $data['zhiye'] = '企业'; // $data['wanshan_status'] = 1; // // $iswansahn = Db::name('user_qiye')->where('uid',$user['id'])->find(); // // $data['shangjia_wanshang_status'] = 1; // // if (!$iswansahn) { // $data['shangjia_wanshang_status'] = 0; // } // // if (empty($user['nickname']) || empty($user['position']) || empty($user['company'])) { // $data['wanshan_status'] = 0; // } $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count(); $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count(); if (!empty($user['company'])) { $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count(); } else { $data['tongshi'] = 0; } } return $this->success('',$data); } /** * 修改会员个人信息 * * @param string $avatar 头像地址 * @param string $username 用户名 * @param string $position 职位 * @param string $company 职位 */ public function profile() { $user = $this->auth->getUser(); $username = $this->request->request('username'); $position = $this->request->request('position'); $company = $this->request->request('company'); $avatar = $this->request->request('avatar'); if ($username) { $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find(); if ($exists) { $this->error(__('Username already exists')); } $user->username = $username; } $user->position = $position; $user->company = $company; $user->avatar = $avatar; $user->save(); $this->success('成功'); } /** * 公司标签 * */ public function leabel() { $data = Db::name('label')->order('sort desc')->select(); return $this->success('',$data); } /** * 完善企业信息 * * @ApiMethod (POST) * @param string $category 所属范畴 * @param string $company_label 公司标签 * @param string $company_address 公司地址 * @param string $company_mobile 联系方式 * @param string $notice 企业简介 * @param string $fuwu_str 企业服务 * @param string $fuwu_images 服务多图 * @param string $wall_images 照片墙 * @param string $license_image 营业执照 */ public function qiye() { $data = $this->request->post(); if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101'); if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102'); if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103'); if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104'); if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105'); if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106'); $user = $this->auth->getUser(); $isset = Db::name('user_qiye')->where('uid',$user['id'])->find(); if ($isset) { return $this->error('您的审核已经提交过了'); } $data['uid'] = $user['id']; $add = Db::name('user_qiye')->insert($data); if ($add) { Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]); return $this->success('提交成功'); } else { return $this->error('提价失败'); } } /** * 完善商家信息 * * @ApiMethod (POST) * @param string $address 商家地址 * @param string $str 商家简介 * @param string $str_images 多图多图 * @param string $wall_images 照片墙 * @param string $license_image 营业执照 */ public function shangjia() { $data = $this->request->post(); if (!isset($data['address']) || empty($data['address'])) return $this->error('参数错误103'); if (!isset($data['str']) || empty($data['str'])) return $this->error('参数错误104'); // if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105'); if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106'); $user = $this->auth->getUser(); $isset = Db::name('user_shangjia')->where('uid',$user['id'])->find(); if ($isset) { return $this->error('您的审核已经提交过了'); } $data['uid'] = $user['id']; $add = Db::name('user_shangjia')->insert($data); if ($add) { Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]); return $this->success('提交成功'); } else { return $this->error('提价失败'); } } /** * 我的粉丝 */ public function fensi() { $user = $this->auth->getUser(); $page = $this->request->get('page'); $limit = $this->request->get('limit'); if (!$page) { $pages = '0,10'; } else { $page = $page - 1; if ($page < 0) $page = 0; $pages = $page . ',' . $limit; } $fensi = Db::name('follow')->where('be_uid',$user['id'])->limit($pages)->select(); if (!$fensi) return $this->success('',[]); $res = []; foreach ($fensi as $k=>$v) { $userInfo = Db::name('user')->where('id',$v['uid'])->find(); $res[$k]['username'] = $userInfo['username']; $res[$k]['avatar'] = $userInfo['avatar']; $res[$k]['uid'] = $userInfo['id']; $res[$k]['position'] = $userInfo['position']; $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find(); $res[$k]['company'] = $userInfo['company']; if ($userCompany && $userCompany['group_id'] == 1) { $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find(); if ($shangjia) { $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10); } else { $res[$k]['notice_str'] = ''; } } else if ($userCompany && $userCompany['group_id'] == 2) { $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find(); if ($qiye) { $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10); } else { $res[$k]['notice_str'] = ''; } } else { $res[$k]['notice_str'] = ''; } } return $this->success('',$res); } /** * 我的关注 */ public function follow() { $user = $this->auth->getUser(); $page = $this->request->get('page'); $limit = $this->request->get('limit'); if (!$page) { $pages = '0,10'; } else { $page = $page - 1; if ($page < 0) $page = 0; $pages = $page . ',' . $limit; } $fensi = Db::name('follow')->where('uid',$user['id'])->limit($pages)->select(); if (!$fensi) return $this->success('',[]); $res = []; foreach ($fensi as $k=>$v) { $userInfo = Db::name('user')->where('id',$v['be_uid'])->find(); $res[$k]['username'] = $userInfo['username']; $res[$k]['avatar'] = $userInfo['avatar']; $res[$k]['uid'] = $userInfo['id']; $res[$k]['position'] = $userInfo['position']; $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find(); $res[$k]['company'] = $userInfo['company']; if ($userCompany && $userCompany['group_id'] == 1) { $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find(); if ($shangjia) { $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10); } else { $res[$k]['notice_str'] = ''; } } else if ($userCompany && $userCompany['group_id'] == 2) { $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find(); if ($qiye) { $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10); } else { $res[$k]['notice_str'] = ''; } } else { $res[$k]['notice_str'] = ''; } } return $this->success('',$res); } /** * 我的同事 */ public function tongshi() { $user = $this->auth->getUser(); if (empty($user['company'])) return $this->error('',[]); $page = $this->request->get('page'); $limit = $this->request->get('limit'); if (!$page) { $pages = '0,10'; } else { $page = $page - 1; if ($page < 0) $page = 0; $pages = $page . ',' . $limit; } $fensi = Db::name('user')->where('company',$user['company'])->where('id','neq',$user['id'])->limit($pages)->select(); if (!$fensi) return $this->success('',[]); $res = []; foreach ($fensi as $k=>$v) { $userInfo = Db::name('user')->where('id',$v['id'])->find(); $res[$k]['username'] = $userInfo['username']; $res[$k]['avatar'] = $userInfo['avatar']; $res[$k]['uid'] = $userInfo['id']; $res[$k]['position'] = $userInfo['position']; $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find(); $res[$k]['company'] = $userInfo['company']; if ($userCompany && $userCompany['group_id'] == 1) { $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find(); if ($shangjia) { $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10); } else { $res[$k]['notice_str'] = ''; } } else if ($userCompany && $userCompany['group_id'] == 2) { $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find(); if ($qiye) { $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10); } else { $res[$k]['notice_str'] = ''; } } else { $res[$k]['notice_str'] = ''; } } return $this->success('',$res); } /** * 安全中心 */ public function anquan() { $data =Db::name('xieyi')->select(); $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[2]['value']); return $this->success('',$res); } /** * 在线反馈 * * @param string $notice 在线反馈 */ public function fankui() { $notice = $this->request->get('notice'); if(empty($notice)) return $this->error('参数错误'); $user = $this->auth->getUser(); $data['uid'] = $user['id']; $data['notice'] = $notice; $data['create_time'] = date('Y-m-d H:i:s',time()); $add = Db::name('fankui')->insert($data); if ($add) { return $this->success('提交成功'); } else { return $this->error('提交失败'); } } /** * 服务协议 */ public function fuwu() { $data =Db::name('xieyi')->select(); $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[0]['value']); return $this->success('',$res); } /** * 隐私政策 * */ public function yinsi() { $data =Db::name('xieyi')->select(); $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[1]['value']); return $this->success('',$res); } /** * 退出登录 */ public function logout() { $this->auth->logout(); $this->success(__('Logout successful')); } /** * 注销账号 * */ public function zhuxiao() { $user = $this->auth->getUser(); $this->auth->logout(); Db::name('user')->where('id',$user['id'])->delete(); $this->success('注销成功'); } /** * 修改密码 * * @param string $oldpwd 旧密码 * @param string $nowpwd 新密码 * @param string $querenpwd 确认密码 */ public function newPwd() { $user = $this->auth->getUser(); $newpassword = $this->request->get('nowpwd'); $oldpwd = $this->request->get('oldpwd'); $querenpwd = $this->request->get('querenpwd'); if (empty($newpassword)) return $this->error('请输入新密码'); if (empty($oldpwd)) return $this->error('请输入旧密码'); if (empty($querenpwd)) return $this->error('请输入确认密码'); if ($newpassword != $querenpwd) { return $this->error('两次密码输入不一致'); } //模拟一次登录 $this->auth->direct($user->id); $rets = $this->auth->changepwd($newpassword, $oldpwd, true); if ($rets) { $this->success(__('Reset password successful')); } else { $this->error($this->auth->getError()); } } /** * 消息管理 * * @param string $luntan 论坛1开启2关闭 * @param string $huodong 活动1开启2关闭 * @param string $fuwu 服务1开启2关闭 */ public function message() { $luntan = $this->request->get('luntan'); $huodong = $this->request->get('huodong'); $fuwu = $this->request->get('fuwu'); $user = $this->auth->getUser(); $upd = []; if(!empty($luntan)) $upd['luntan'] = $luntan; if(!empty($huodong)) $upd['huodong'] = $huodong; if(!empty($fuwu)) $upd['fuwu'] = $fuwu; $upd = Db::name('user')->where('id',$user['id'])->update($upd); if ($upd) { return $this->success('操作成功'); } else { return $this->error('操作失败'); } } /** * 公司信息 * @param string $uid 用户id */ public function companyInfo() { $user = $this->auth->getUser(); $uid = $this->request->get('uid'); if($user['id'] !=$uid) return $this->error('错误'); if (empty($user['company'])) return $this->error('您还未填入自己的公司名称'); $qiyejia = Db::name('user')->where('company',$user['company'])->where('group_id',2)->where('shenhe_status','>',0)->find(); if (!$qiyejia) return $this->error('暂未找到此公司详细信息'); $uid = $qiyejia['id']; $data = Db::name('user_qiye')->where('uid',$uid)->find(); $data['license_image'] = config('site.httpurl').$data['license_image']; $data['avatar_image'] = config('site.httpurl').$data['avatar_image']; $data['fuwu_images'] = explode(',',$data['fuwu_images']); $data['company'] = $user['company']; foreach ($data['fuwu_images'] as &$v) { $v = config('site.httpurl').$v; } $data['wall_images'] = explode(',',$data['wall_images']); foreach ($data['wall_images'] as &$v) { $v = config('site.httpurl').$v; } return $this->success('',$data); } /** * 编辑企业信息 * * @ApiMethod (POST) * @param string $avatar_image 头像 * @param string $category 所属范畴 * @param string $company_label 公司标签 * @param string $company_address 公司地址 * @param string $company_mobile 联系方式 * @param string $notice 企业简介 * @param string $fuwu_str 企业服务 * @param string $fuwu_images 服务多图 * @param string $wall_images 照片墙 * @param string $license_image 营业执照 */ public function updCompany() { $data = $this->request->post(); if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101'); if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102'); if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103'); if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104'); if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105'); if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106'); $user = $this->auth->getUser(); if ($user['group_id'] !=2 || $user['shenhe_status'] <1) return $this->error('对不起,请联系企业负责人修改企业信息'); $data['uid'] = $user['id']; $add = Db::name('user_qiye')->where('uid',$user['id'])->update($data); if ($add) { return $this->success('提交成功'); } else { return $this->error('提价失败'); } } /** * 修改手机号 * * @param string $mobile 手机号 * @param string $captcha 验证码 */ public function changemobile() { $user = $this->auth->getUser(); $mobile = $this->request->request('mobile'); $captcha = $this->request->request('captcha'); if (!$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) { $this->error(__('Mobile already exists')); } $result = Sms::check($mobile, $captcha, 'changemobile'); if (!$result) { $this->error(__('Captcha is incorrect')); } $verification = $user->verification; $verification->mobile = 1; $user->verification = $verification; $user->mobile = $mobile; $user->save(); Sms::flush($mobile, 'changemobile'); $this->success(); } /** * 微信登录 * * @param string $code Code码 */ // public function third() // // { // // $wchat = new WeChat(); // // // $code = request()->param('code', ""); // // $user = $wchat->getUserAccessUserInfo($code); // dump($user);die; // // } //微信登录 public function third(){ $code = request()->param('code', "");//获取code $appid ="wxe02aa578255f9184"; $secret = "39ec8add0b8d4ed794e9cb330a334538"; $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$code&grant_type=authorization_code"; //通过code换取网页授权access_token $weixin = file_get_contents($url); dump($weixin);die; $jsondecode = json_decode($weixin); //对JSON格式的字符串进行编码 $array = get_object_vars($jsondecode);//转换成数组 $openid = $array['openid'];//输出openid return $openid; } }