123456789101112131415161718192021 |
- <?php
- namespace refill\fengyeman;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://103.66.58.75:9998/api/pay/telpay';
- const QUERY_URL = 'http://103.66.58.75:9998/api/pay/telpay/query';
- const BALANCE_URL = 'http://103.66.58.75:9998/api/pay/telpay/balance';
- const MCHID = 'HF67a65_10008';
- const KEY = '8dd6f67a65b806fbfb74dde74c5f1550';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_fengyeman.php";
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- const TIMEOUT = 18000;
- const operator = [
- mtopcard\ChinaMobileCard => 0,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 2
- ];
- }
|