12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace fast;
- use EasyWeChat\Factory;
- /**
- * 版本检测和对比
- */
- class Mini
- {
- public static function mini(){
- static $app;
- if(!isset($app)) {
- $config = [
- 'app_id' => config('site.user_appid'),
- 'secret' => config('site.user_appsecret'),
- // 下面为可选项
- // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
- 'response_type' => 'array',
- 'log' => [
- 'level' => 'debug',
- 'file' => RUNTIME_PATH . '/wechat_user.log',
- ],
- ];
- $app=Factory::miniProgram($config);
- }
- return $app;
- }
- public static function payment($client='user'){
- static $app=[];
- if(!isset($app[$client])) {
- $config = [
- 'app_id' => config('site.user_appid'),
- 'secret' => config('site.user_appsecret'),
- // 下面为可选项
- // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
- 'response_type' => 'array',
- 'log' => [
- 'level' => 'debug',
- 'file' => RUNTIME_PATH . '/wechat_user.log',
- ],
- ];
- $app[$client]=Factory::payment($config);
- }
- return $app[$client];
- }
- }
|