1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace refill\miaoxt_fs_sec;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.118.46.242:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.118.46.242:10186/plat/api/old/queryorder';
- const BALANCE_URL = 'http://47.118.46.242:10186/plat/api/old/queryBalance';
- const USER_ID= '200120';
- const KEY = '17bd27f3114a4cfea7e4cff004ce8d37';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_miaoxt_fs_sec.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
- ];
- //key格式 卡类型-面值-regin_no
- const Price = [
- //移动
- "4-30-19" => 30.03, "4-50-19" => 50.05, "4-100-19" => 100.1, "4-200-19" => 200.2, "4-300-19" => 300.3, "4-500-19" => 500.5,//广东 19
- ];
- }
|