12345678910111213141516171819202122 |
- <?php
- namespace refill\yilin;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.5.110.99:9086/onlinepay.do';
- const QUERY_URL= 'http://121.5.110.99:9086/searchpay.do';
- const BALANCE_URL = 'http://121.5.110.99:9086/searchbalance.do';
- const USER_ID= '10002543';
- const KEY = 'WMTekc8mYd485Qawj75kFXY68tAkmNEG';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yilin.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- }
|