config.php 713 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace refill\cangbu;
  3. use mtopcard;
  4. class config
  5. {
  6. //yd 950 dl949
  7. const ORDER_URL = 'https://api.irecycle.top/queryBuy';
  8. const QUERY_URL= 'https://api.irecycle.top/queryBizOrder';
  9. const BALANCE_URL= 'https://api.irecycle.top//queryBalance';
  10. const MCH_ID= '112';
  11. const KEY = 'zs53xG61NinhlrXskhR0xnAaOyM7yG';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_cangbu.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 'MOBILE',
  15. mtopcard\ChinaUnicomCard => 'UNICOM',
  16. mtopcard\ChinaTelecomCard => 'TELECOM'
  17. ];
  18. const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded' , 'Accept: application/json;charset=UTF-8'];
  19. }