config.php 681 B

12345678910111213141516171819202122
  1. <?php
  2. namespace refill\yunsuoyaofs;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://121.36.253.142:9086/onlinepay.do';
  7. const QUERY_URL= 'http://121.36.253.142:9086/searchpay.do';
  8. const BALANCE_URL= 'http://121.36.253.142:9086/searchbalance.do';
  9. const USER_ID= '10002671';
  10. const KEY = 'NEfMheiRbfzCeKShmFCBb8cbhsMHAZmh';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunsuoyaofs.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 'yd',
  14. mtopcard\ChinaUnicomCard => 'lt',
  15. mtopcard\ChinaTelecomCard => 'dx'
  16. ];
  17. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  18. }