Mini.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace fast;
  3. use EasyWeChat\Factory;
  4. /**
  5. * 版本检测和对比
  6. */
  7. class Mini
  8. {
  9. public static function mini(){
  10. static $app;
  11. if(!isset($app)) {
  12. $config = [
  13. 'app_id' => config('site.user_appid'),
  14. 'secret' => config('site.user_appsecret'),
  15. // 下面为可选项
  16. // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
  17. 'response_type' => 'array',
  18. 'log' => [
  19. 'level' => 'debug',
  20. 'file' => RUNTIME_PATH . '/wechat_user.log',
  21. ],
  22. ];
  23. $app=Factory::miniProgram($config);
  24. }
  25. return $app;
  26. }
  27. public static function payment($client='user'){
  28. static $app=[];
  29. if(!isset($app[$client])) {
  30. $config = [
  31. 'app_id' => config('site.user_appid'),
  32. 'secret' => config('site.user_appsecret'),
  33. // 下面为可选项
  34. // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
  35. 'response_type' => 'array',
  36. 'log' => [
  37. 'level' => 'debug',
  38. 'file' => RUNTIME_PATH . '/wechat_user.log',
  39. ],
  40. ];
  41. $app[$client]=Factory::payment($config);
  42. }
  43. return $app[$client];
  44. }
  45. }