|
@@ -2,6 +2,8 @@
|
|
|
// 应用公共文件
|
|
|
use think\facade\Filesystem;
|
|
|
use think\facade\Config;
|
|
|
+use think\facade\Cache;
|
|
|
+use think\facade\Log;
|
|
|
use app\model\AdminTokenModel;
|
|
|
use app\model\AdminModel;
|
|
|
use think\exception\ValidateException;
|
|
@@ -134,7 +136,6 @@ if (!function_exists('randomkeys')) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
//上传图片
|
|
|
/**
|
|
|
* @param $files
|
|
@@ -293,7 +294,6 @@ if (!function_exists('del_dir')) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
//根据省市区编码获取省市区名称
|
|
|
if (!function_exists('get_addr_name')) {
|
|
|
function get_addr_name(string $addr_code = ''): string
|
|
@@ -305,3 +305,65 @@ if (!function_exists('get_addr_name')) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 获取微信操作对象(单例模式)
|
|
|
+ * @staticvar array $wechat 静态对象缓存对象
|
|
|
+ * @param type $type 接口名称 ( Card|Custom|Device|Extend|Media|Oauth|Pay|Receive|Script|User )
|
|
|
+ * @return \Wehcat\WechatReceive 返回接口对接
|
|
|
+ */
|
|
|
+if (!function_exists('load_wechat')) {
|
|
|
+ function & load_wechat(string $type = '')
|
|
|
+ {
|
|
|
+ static $wechat = array();
|
|
|
+ $index = md5(strtolower($type));
|
|
|
+ if (!isset($wechat[$index])) {
|
|
|
+ // 定义微信公众号配置参数(这里是可以从数据库读取的哦)
|
|
|
+ $options = array(
|
|
|
+ 'token' => '', // 填写你设定的key
|
|
|
+ 'appid' => '', // 填写高级调用功能的app id, 请在微信开发模式后台查询
|
|
|
+ 'appsecret' => '', // 填写高级调用功能的密钥
|
|
|
+ 'encodingaeskey' => '', // 填写加密用的EncodingAESKey(可选,接口传输选择加密时必需)
|
|
|
+ 'mch_id' => '', // 微信支付,商户ID(可选)
|
|
|
+ 'partnerkey' => '', // 微信支付,密钥(可选)
|
|
|
+ 'ssl_cer' => '', // 微信支付,双向证书(可选,操作退款或打款时必需)
|
|
|
+ 'ssl_key' => '', // 微信支付,双向证书(可选,操作退款或打款时必需)
|
|
|
+ 'cachepath' => '', // 设置SDK缓存目录(可选,默认位置在Wechat/Cache下,请保证写权限)
|
|
|
+ );
|
|
|
+
|
|
|
+ Wechat\Loader::config($options);
|
|
|
+
|
|
|
+ //修改sdk的缓存方式
|
|
|
+
|
|
|
+ // 缓存写入
|
|
|
+ // $name 缓存字段名称
|
|
|
+ // $value 缓存字段内容值
|
|
|
+ // $expired 缓存有效时间(单位秒),0 表示永久缓存
|
|
|
+ Wechat\Loader::register('CacheSet', function ($name, $value, $expired) {
|
|
|
+ return Cache::set($name, $value, $expired);
|
|
|
+ });
|
|
|
+
|
|
|
+ //缓存读取
|
|
|
+ // $name 缓存字段名称,一定要有return回去哦
|
|
|
+ Wechat\Loader::register('CacheGet', function ($name) {
|
|
|
+ return Cache::get($name);
|
|
|
+ });
|
|
|
+
|
|
|
+ //缓存删除
|
|
|
+ // $name 缓存字段名称
|
|
|
+ Wechat\Loader::register('CacheDel', function ($name) {
|
|
|
+ return Cache::delete($name);
|
|
|
+ });
|
|
|
+
|
|
|
+ //日志记录
|
|
|
+ // $line 单行日志内容
|
|
|
+ // $filename 日志的文件(可以重新定义)
|
|
|
+ Wechat\Loader::register('CachePut', function ($line, $filename) {
|
|
|
+ return Log::record($line, 'notice');
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ $wechat[$index] = Wechat\Loader::get($type);
|
|
|
+ }
|
|
|
+ return $wechat[$index];
|
|
|
+ }
|
|
|
+}
|