1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace refill\xinhengyang;
- use mtopcard;
- class config
- {
- //回调地址需配置
- const ORDER_URL = 'http://101.37.26.78/flow/order';
- const QUERY_URL= 'http://101.37.26.78/flow/query';
- const BALANCE_URL = 'http://101.37.26.78/flow/balance';
- const USER_NAME= 'KH100002';
- const KEY = '54fd939a219c408d964201f4464b5404';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xinhengyang.php";
- const ProductIDS = [
- mtopcard\ChinaMobileCard =>
- [
- 10 => 'NA800010',
- 20 => 'NA800020',
- 30 => 'NA800030',
- 50 => 'NA800050',
- 100 => 'NA800100',
- 200 => 'NA800200',
- 300 => 'NA800300',
- 500 => 'NA800500'
- ],
- mtopcard\ChinaUnicomCard =>
- [
- 10 => 'NA900010',
- 20 => 'NA900020',
- 30 => 'NA900030',
- 50 => 'NA900050',
- 100 => 'NA900100',
- 200 => 'NA900200',
- 300 => 'NA900300',
- 500 => 'NA900500'
- ],
- mtopcard\ChinaTelecomCard =>
- [
- 10 => 'NA700010',
- 20 => 'NA700020',
- 30 => 'NA700030',
- 50 => 'NA700050',
- 100 => 'NA700100',
- 200 => 'NA700200',
- 300 => 'NA700300',
- 500 => 'NA700500'
- ]
- ];
- }
|