config.php 684 B

12345678910111213141516171819202122
  1. <?php
  2. namespace refill\yunsuoyaoman;
  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_UTL = 'http://121.36.253.142:9086/searchbalance.do';
  9. const USER_ID= '10002746';
  10. const KEY = '4Q7X4sDdi43cT8CkayhAPSFAbb7AdHt8';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunsuoyaoman.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. }