config.php 514 B

1234567891011121314151617181920
  1. <?php
  2. namespace refill\shuoruan;
  3. use mtopcard;
  4. class config
  5. {
  6. const API_URL = 'http://api.sohan.hk:50080/API';
  7. const ACCOUNT = '18600608333';
  8. const KEY = '471D690CFB902BD8';
  9. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_shuoruan.php";
  10. const ExtHeaders = ['Content-Type: application/json;charset=GB2312'];
  11. const operator = [
  12. mtopcard\ChinaMobileCard => '移动',
  13. mtopcard\ChinaUnicomCard => '联通',
  14. mtopcard\ChinaTelecomCard => '电信'
  15. ];
  16. }