config.php 640 B

1234567891011121314151617181920
  1. <?php
  2. namespace refill\fengyeman;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://103.66.58.75:9998/api/pay/telpay';
  7. const QUERY_URL = 'http://103.66.58.75:9998/api/pay/telpay/query';
  8. const MCHID = 'HF67a65_10008';
  9. const KEY = '8dd6f67a65b806fbfb74dde74c5f1550';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_fengyeman.php";
  11. const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
  12. const TIMEOUT = 18000;
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 0,
  15. mtopcard\ChinaUnicomCard => 1,
  16. mtopcard\ChinaTelecomCard => 2
  17. ];
  18. }