| 123456789101112131415161718192021222324252627282930 |
- <?php
- /* *
- * 配置文件
- */
- require("../../config/conn.php");
- $yunpay=preg_split("/,/",$rowcontrol['otherpay']);
- //↓↓↓↓↓↓↓↓↓↓请在这里配置您的基本信息↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
- //商户ID
- $alipay_config['partner'] = '1000';
- //商户KEY
- $alipay_config['key'] = '66YDZ4z6y62yLLh22ELgME9E696KgyvY';
- //↑↑↑↑↑↑↑↑↑↑请在这里配置您的基本信息↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
- //签名方式 不需修改
- $alipay_config['sign_type'] = strtoupper('MD5');
- //字符编码格式 目前支持 gbk 或 utf-8
- $alipay_config['input_charset']= strtolower('utf-8');
- //访问模式,根据自己的服务器是否支持ssl访问,若支持请选择https;若不支持请选择http
- $alipay_config['transport'] = 'http';
- //支付API地址
- $alipay_config['apiurl'] = 'http://pay.163aas.com/';
- ?>
|