epay.config.php 918 B

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