config.php 778 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace refill\huafutong;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://me.sd.7080.cn:8080/?c=pay&m=create';
  7. const QUERY_URL= 'http://api.sd.7080.cn:8080/?m=querys&a=queryorder';
  8. const BALANCE_URL = 'http://api.sd.7080.cn:8080/?m=querys&a=querymoney';
  9. const MCH_ID = '189';
  10. const UserKey = '5acedcdd7714bd5f'; #正式key
  11. // const UserKey = 'de1b215bac0c1986'; #测试key
  12. const aesIV = '1111111111111111';
  13. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_huafutong.php";
  14. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  15. const operator = [
  16. mtopcard\ChinaMobileCard => 3,
  17. mtopcard\ChinaUnicomCard => 1,
  18. mtopcard\ChinaTelecomCard => 2
  19. ];
  20. }