config.php 526 B

12345678910111213141516171819
  1. <?php
  2. namespace refill\yunling;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://39.101.180.197:8177/soft/onlinepay.do';
  7. const QUERY_URL= 'http://39.101.180.197:8177/soft/searchpay.do';
  8. const USER_ID= '10073505';
  9. const KEY = 'FA302267C7EC5E3840264E6044E48CD1';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunling.php";
  11. const operator = [
  12. mtopcard\ChinaMobileCard => '移动',
  13. mtopcard\ChinaUnicomCard => '联通',
  14. mtopcard\ChinaTelecomCard => '电信'
  15. ];
  16. }