[更新]还原load_wechat函数

This commit is contained in:
Anyon 2017-09-27 17:11:14 +08:00
parent d1e536df81
commit 1ebbadba36

View File

@ -49,16 +49,25 @@ function mongo($col, $force = false)
* @return \Wechat\WechatMedia|\Wechat\WechatMenu|\Wechat\WechatOauth|\Wechat\WechatPay|\Wechat\WechatReceive|\Wechat\WechatScript|\Wechat\WechatUser|\Wechat\WechatExtends|\Wechat\WechatMessage * @return \Wechat\WechatMedia|\Wechat\WechatMenu|\Wechat\WechatOauth|\Wechat\WechatPay|\Wechat\WechatReceive|\Wechat\WechatScript|\Wechat\WechatUser|\Wechat\WechatExtends|\Wechat\WechatMessage
* @throws Exception * @throws Exception
*/ */
function load_wechat($name = '') function & load_wechat($type = '')
{ {
static $cache = []; static $wechat = [];
if (empty($cache[$name])) { $index = md5(strtolower($type));
list($appid, $appkey) = [sysconf('wechat_appid'), sysconf('wechat_appkey')]; if (!isset($wechat[$index])) {
$token = strtolower("{$name}-{$appid}-{$appkey}"); $config = [
$location = "http://api.cuci.cc/wechat/instance/{$token}.html"; 'token' => sysconf('wechat_token'),
$cache[$name] = new SoapService(null, ['uri' => strtolower($name), 'location' => $location]); 'appid' => sysconf('wechat_appid'),
'appsecret' => sysconf('wechat_appsecret'),
'encodingaeskey' => sysconf('wechat_encodingaeskey'),
'mch_id' => sysconf('wechat_mch_id'),
'partnerkey' => sysconf('wechat_partnerkey'),
'ssl_cer' => sysconf('wechat_cert_cert'),
'ssl_key' => sysconf('wechat_cert_key'),
'cachepath' => CACHE_PATH . 'wxpay' . DS,
];
$wechat[$index] = Loader::get($type, $config);
} }
return $cache[$name]; return $wechat[$index];
} }
/** /**