config.php 606 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\suyuan;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://121.196.63.222:10186/plat/api/old/submitorder';
  7. const QUERY_URL= 'http://121.196.63.222:10186/plat/api/old/queryorder';
  8. const USER_ID= '200000';
  9. const KEY = '2a7533687d974571a2051ad555bfd2f5';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_suyuan.php";
  11. const operator = [
  12. mtopcard\ChinaMobileCard => 1,
  13. mtopcard\ChinaUnicomCard => 2,
  14. mtopcard\ChinaTelecomCard => 3
  15. ];
  16. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  17. }