config.php 668 B

12345678910111213141516171819202122
  1. <?php
  2. namespace refill\tianchen;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://47.114.98.104:10081/plat/api/px/submit';
  7. const QUERY_URL = 'http://47.114.98.104:10081/plat/api/px/query';
  8. const BALANCE_URL = 'http://47.114.98.104:10081/plat/api/px/balance';
  9. const MCHID = '100125';
  10. const KEY = '43f70950bcb34f5595d020890fc37c28';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_tianchen.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 1,
  14. mtopcard\ChinaUnicomCard => 2,
  15. mtopcard\ChinaTelecomCard => 3
  16. ];
  17. const ExtHeaders = ['Content-Type: application/json'];
  18. }