config.php 729 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace refill\huafutongman;
  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 = '204';
  10. const UserKey = 'e9e288235c1373a2'; #正式key
  11. const aesIV = '1111111111111111';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_huafutongman.php";
  13. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  14. const operator = [
  15. mtopcard\ChinaMobileCard => 3,
  16. mtopcard\ChinaUnicomCard => 1,
  17. mtopcard\ChinaTelecomCard => 2
  18. ];
  19. }