jssdk->setUrl($url); $apis = ['onMenuShareTimeline', 'onMenuShareAppMessage', 'onMenuShareQQ', 'onMenuShareWeibo', 'onMenuShareQZone', 'openLocation', 'getLocation', 'chooseWXPay', 'updateAppMessageShareData', 'updateTimelineShareData', 'openAddress']; try { $data = $app->jssdk->getConfigArray($apis, $debug = false, $beta = false); return data_success('', $data); } catch (Exception $e) { return data_error('公众号配置出错' . $e->getMessage()); } } public static function index() { if (isset($_GET['echostr'])) { echo $_GET["echostr"]; exit; } //微信配置 $config = WeChatServer::getOaConfig(); $app = Factory::officialAccount($config); $app->server->push(function ($message) { switch ($message['MsgType']) { case WeChat::msg_type_event: //关注事件 switch ($message['Event']) { case WeChat::msg_event_subscribe: $reply_content = Db::name('wechat_reply') ->where(['reply_type' => WeChat::msg_event_subscribe, 'status' => 1, 'del' => 0]) ->value('content'); //关注回复空的话,找默认回复 if (empty($reply_content)) { $reply_content = Db::name('wechat_reply') ->where(['reply_type' => WeChat::msg_type_default, 'status' => 1, 'del' => 0]) ->value('content'); } if ($reply_content) { $text = new Text($reply_content); return $text; } break; } case WeChat::msg_type_text://消息类型 $reply_list = Db::name('wechat_reply') ->where(['reply_type' => WeChat::msg_type_text, 'status' => 1, 'del' => 0]) ->order('sort asc') ->select(); $reply_content = ''; foreach ($reply_list as $reply) { switch ($reply['matching_type']) { case 1://全匹配 $reply['keyword'] === $message['Content'] && $reply_content = $reply['content']; break; case 2://模糊匹配 stripos($reply['keyword'], $message['Content']) && $reply_content = $reply['content']; break; } } //消息回复为空的话,找默认回复 if (empty($reply_content)) { $reply_content = Db::name('wechat_reply') ->where(['reply_type' => WeChat::msg_type_default, 'status' => 1, 'del' => 0]) ->value('content'); } if ($reply_content) { $text = new Text($reply_content); return $text; } break; } }); $response = $app->server->serve(); $response->send(); } }