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