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