12345678910111213141516171819202122 |
- <?php
- namespace refill\moxj_fs;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://45.200.141.165/api/receiveOrder';
- const QUERY_URL = 'http://45.200.141.165/api/queryOrder';
- const PARTNER_ID = '32';
- const KEY = 'a78818d925529026a129c95bf2aa0318';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_moxj_fs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 2,
- mtopcard\ChinaUnicomCard => 0,
- mtopcard\ChinaTelecomCard => 1
- ];
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- }
|