| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace App\Services;
- use Yansongda\Pay\Pay;
- class PayService
- {
- //public function
- public static function ali_config(){
- $config = [
- 'app_id' => '2016082000295641',
- 'notify_url' => 'https://'.$_SERVER['HTTP_HOST'].'/api/ali_notify.php',
- 'return_url' => 'https://'.$_SERVER['HTTP_HOST'].'/api/ali_return.php',
- 'ali_public_key' => '',//支付宝公钥
- 'private_key' => '',//应用私钥
- 'log' => [ // optional
- 'file' => './logs/alipay.log',
- 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
- 'type' => 'single', // optional, 可选 daily.
- 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
- ],
- 'http' => [ // optional
- 'timeout' => 5.0,
- 'connect_timeout' => 5.0,
- // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
- ],
- // 'mode' => 'dev', // optional,设置此参数,将进入沙箱模式
- ];
- return $config;
- }
- public static function wx_config(){
- $config = [
- 'appid' => 'wxb3fxxxxxxxxxxx', // APP APPID
- //'app_id' => 'wxb3fxxxxxxxxxxx', // 公众号 APPID
- //'miniapp_id' => 'wxb3fxxxxxxxxxxx', // 小程序 APPID
- 'mch_id' => '145776xxxx',
- 'key' => 'mF2suE9sU6Mk1CxxxxIxxxxx',
- 'notify_url' => 'https://'.$_SERVER['HTTP_HOST'].'/api/wx_notify.php',
- //'cert_client' => './cert/apiclient_cert.pem', // optional, 退款,红包等情况时需要用到
- //'cert_key' => './cert/apiclient_key.pem',// optional, 退款,红包等情况时需要用到
- 'log' => [ // optional
- 'file' => './logs/wechat.log',
- 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
- 'type' => 'single', // optional, 可选 daily.
- 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
- ],
- 'http' => [ // optional
- 'timeout' => 5.0,
- 'connect_timeout' => 5.0,
- // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
- ],
- // 'mode' => 'dev',
- ];
- return $config;
- }
- public static function pay($param){
- if($param['payment'] == 1){
- $wechat = Pay::wechat(self::wx_config());
- return $wechat->app($param)->send();
- }else{
- $alipay = Pay::alipay(self::ali_config());
- return $alipay->app($param)->send();
- }
- }
- }
|