1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace refill\ruierxun;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.79.205.90:8911/api/hf/order/submit';
- const QUERY_URL = 'http://120.79.205.90:8911/api/order/query';
- const BALANCE_URL = 'http://120.79.205.90:8911/api/account/balance';
- const APP_ID = 'LaEORKdrnZ';
- const APP_SECRET = 'MopRIUeqRbBORCOM';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_ruierxun.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100159,
- 50 => 100160,
- 100 => 100161,
- 200 => 100162
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100005,
- 50 => 100006,
- 100 => 100007,
- 200 => 100008
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100164,
- 50 => 100165,
- 100 => 100166,
- 200 => 100167
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|