config.php 631 B

123456789101112131415161718192021
  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 USER_ID= '10002671';
  9. const KEY = 'NEfMheiRbfzCeKShmFCBb8cbhsMHAZmh';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunsuoyaofs.php";
  11. const operator = [
  12. mtopcard\ChinaMobileCard => 'yd',
  13. mtopcard\ChinaUnicomCard => 'lt',
  14. mtopcard\ChinaTelecomCard => 'dx'
  15. ];
  16. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  17. }