config.php 519 B

123456789101112131415
  1. <?php
  2. namespace refill\shangtou;
  3. class config
  4. {
  5. const ORDER_URL = 'http://121.41.5.205/api/power_pay';
  6. const QUERY_URL = 'http://121.41.5.205/api/power_pay/query';
  7. const BALANCE_URL = 'http://121.41.5.205/api/power_pay/balance';
  8. const MCHID = '20126';
  9. const KEY = '73768084696f1c60956a6df748a2b2f5';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_shangtou.php";
  11. const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
  12. const TIMEOUT = 86400;
  13. }