12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\zhiren_doubi;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.26.36.223:9527/external/order/submit';
- const QUERY_URL = 'http://120.26.36.223:9527/external/order/query';
- const BALANCE_URL = 'http://120.26.36.223:9527/external/order/balance';
- const merchantId = 'R9jRzoimVQ';
- const Key = 'OrwR7oUlQ6BkMhg3cB3IqrzOhrgdHwTd';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhiren_doubi.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 1320030,
- 50 => 1320050,
- 100 => 1320100,
- 200 => 1320200,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 3320030,
- 50 => 3320050,
- 100 => 3320100,
- 200 => 3320200,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 2320030,
- 50 => 2320050,
- 100 => 2320100,
- 200 => 2320200,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- }
|