1234567891011121314151617181920212223242526 |
- <?php
- namespace refill\chizeng;
- use mtopcard;
- class config
- {
- //https://www.showdoc.com.cn/AQL666666/
- const ORDER_URL = 'http://123.60.208.38:9086/onlinepay.do';
- const QUERY_URL= 'http://123.60.208.38:9086/searchpay.do';
- const BALANCE_UTL = 'http://123.60.208.38:9086/searchbalance.do';
- const USER_ID= '10002523';
- const KEY = 'BASm8ACwBZxjewFcrQssFxz6P8ydDHfc';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_chizeng.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ERR_NOS = [
- '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
- }
|