123456789101112131415161718192021 |
- <?php
- namespace refill\afandfs;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://119.8.102.95/api/receiveOrder';
- const QUERY_URL = 'http://119.8.102.95/api/queryOrder';
- const PARTNER_ID = '52';
- const KEY = '130c44ac97bf094b6c7e448be1fbee8f';
- const NOTIFY_URL = BASE_SITE_URL."/mobile/refill_afandfs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 2,
- mtopcard\ChinaUnicomCard => 0,
- mtopcard\ChinaTelecomCard => 1
- ];
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- }
|