1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace refill\canbin;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://8.154.19.179:16188/plat/api/hf/submitorder';
- const QUERY_URL= 'http://8.154.19.179:16188/plat/api/queryorder';
- const BALANCE_URL = 'http://8.154.19.179:16188/plat/api/querybalance';
- const USER_ID= '100003';
- const KEY = 'aa5303ead7314d2ea5f4145d908b7bfb';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_canbin.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERR_NOS = [
- 1000,1001,1003,1004,2001,2002,2003,2020,2021,1006,2030,3003
- ];
- const Product = [
- mtopcard\ChinaMobileCard => [
- 30 => 1000030,
- 50 => 1000050,
- 100 => 1000100,
- 200 => 1000200,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 2000030,
- 50 => 2000050,
- 100 => 2000100,
- 200 => 2000200,
- ],
- mtopcard\ChinaTelecomCard => [
- 50 => 3000050,
- 100 => 3000100,
- 200 => 3000200,
- ],
- ];
- }
|