123456789101112131415161718192021 |
- <?php
- namespace refill\fengye;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.118.36.120:9009/prod-produce/api/provide';
- const QUERY_URL = 'http://47.118.36.120:9009/prod-produce/api/query';
- const USER_ID = '13';
- const KEY = '2579695a64e30345e23fdb53aebb7b6c';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_fengye.php";
- const ExtHeaders = ['Content-Type: application/json'];
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- }
|