12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace refill\xianghongrui;
- use mtopcard;
- class config
- {
- //yd948 dl95
- const ORDER_URL = 'http://123.60.50.146:9086/onlinepay.do';
- const QUERY_URL= 'http://123.60.50.146:9086/searchpay.do';
- const BALANCE_UTL = 'http://123.60.50.146:9086/searchbalance.do';
- const USER_ID= '10002503';
- const KEY = 'ZcWJfd4Jt63JAwiymPEXzGDHyjy8H62F';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xianghongrui.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [
- 30 => '30000005171', 50 => '30000005172', 100 => '30000005173', 200 => '30000005174'
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => '30000005175', 50 => '30000005176', 100 => '30000005177', 200 => '30000005178'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => '30000005179', 50 => '30000005180', 100 => '30000005181', 200 => '30000005182'
- ]
- ];
- }
|