Files
Epay/plugins/micro/inc/micro.config.php
2020-02-21 16:21:31 +08:00

32 lines
896 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/* *
* 微信小微支付配置文件
*/
//↓↓↓↓↓↓↓↓↓↓请在这里配置您的基本信息↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
//支付API地址
$alipay_config['apiurl'] = $channel['appurl'];
//商户ID
$alipay_config['appid'] = $channel['appid'];
//商户KEY
$alipay_config['key'] = $channel['appkey'];
//MCHID
$alipay_config['mchid'] = $channel['appmchid'];
//↑↑↑↑↑↑↑↑↑↑请在这里配置您的基本信息↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
//签名方式 不需修改
$alipay_config['sign_type'] = strtoupper('MD5');
//字符编码格式 目前支持 gbk 或 utf-8
$alipay_config['input_charset']= strtolower('utf-8');
//访问模式,根据自己的服务器是否支持ssl访问若支持请选择https若不支持请选择http
$alipay_config['transport'] = 'http';
?>