123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace refill\cangxin;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.98.184.74:9527/order/submit';
- const QUERY_URL = 'http://47.98.184.74:9527/order/query';
- const BALANCE_URL = 'http://47.98.184.74:9527/order/balance';
- const clientId = '10025';
- const Key = 'GeuVXsmZVhPwkqNLaL9THdAk2j5x3mJh';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_cangxin.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 1320030,
- 50 => 1320050,
- 100 => 1320100,
- 200 => 1320200,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 3320030,
- 50 => 3320050,
- 100 => 3320100,
- 200 => 3320200,
- 300 => 3320300,
- 500 => 3320500,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 2320030,
- 50 => 2320050,
- 100 => 2320100,
- 200 => 2320200,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- }
|