1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace refill\yamiao_normal;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.25.147.74:8911/api/hf/order/submit';
- const QUERY_URL = 'http://120.25.147.74:8911/api/order/query';
- const BALANCE_URL = 'http://120.25.147.74:8911/api/account/balance';
- const APP_ID = '1pjrA9YErq';
- const APP_SECRET = 'YQzkPPONeQBuoyFH';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yamiao_normal.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 50 => 100017,
- 100 => 100018,
- 200 => 100019,
- 300 => 100027,
- 500 => 100028
- ],
- mtopcard\ChinaUnicomCard => [
- 50 => 100013,
- 100 => 100014,
- 200 => 100015,
- 300 => 100029,
- 500 => 100030
- ],
- mtopcard\ChinaTelecomCard => [
- 50 => 100021,
- 100 => 100022,
- 200 => 100023,
- 300 => 100031,
- 500 => 100032
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|