|
|
|
@ -283,16 +283,19 @@ class Server |
|
|
|
|
/** |
|
|
|
|
* @notes:获取版本信息 |
|
|
|
|
* @param $appid |
|
|
|
|
* @return bool |
|
|
|
|
* @return mixed|string |
|
|
|
|
* @author: wanghousheng |
|
|
|
|
*/ |
|
|
|
|
public function getVersioninfo($appid): bool |
|
|
|
|
public function getVersioninfo($appid) |
|
|
|
|
{ |
|
|
|
|
$msg = '未知错误'; |
|
|
|
|
$access_token = $this->authorizerAccessToken($appid); |
|
|
|
|
$url = 'https://api.weixin.qq.com/wxa/getversioninfo?access_token=' . $access_token; |
|
|
|
|
$result = $this->curlPost($url, '{}'); |
|
|
|
|
$result = json_decode($result, true); |
|
|
|
|
if ($result && !empty($result['errmsg']) && $result['errmsg'] == 'ok') { |
|
|
|
|
if ($result && !empty($result['errmsg'])) { |
|
|
|
|
$msg = $result['errmsg']; |
|
|
|
|
if ($msg == 'ok') { |
|
|
|
|
$up = []; |
|
|
|
|
if (!empty($result['exp_info'])) { |
|
|
|
|
$up['exp_info'] = json_encode($result['exp_info']); |
|
|
|
@ -304,9 +307,9 @@ class Server |
|
|
|
|
$model = new WxserverAccount(); |
|
|
|
|
$model->update($up, ['appid' => $appid]); |
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
return $msg; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|