1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace refill\xiaochuang;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://1.116.75.33/api/flow/recharge';
- const QUERY_URL = 'http://1.116.75.33/api/flow/result';
- const BALANCE_URL = 'http://1.116.75.33/api/flow/balance';
- const APP_ID = '8e4adec235d11ba4d335d9b8aead1e4b';
- const KEY = '3dee2dfb2eef18385754e15b50718153';
- const code = [
- mtopcard\ChinaMobileCard => [
- 100 => 18,
- 200 => 19
- ],
- mtopcard\ChinaUnicomCard => [
- 100 => 21,
- 200 => 22
- ],
- mtopcard\ChinaTelecomCard => [
- 100 => 23,
- 200 => 24
- ],
- ];
- const product = [
- mtopcard\ChinaMobileCard => [
- 100 => '6_100',
- 200 => '6_200'
- ],
- mtopcard\ChinaUnicomCard => [
- 100 => '7_100',
- 200 => '7_200'
- ],
- mtopcard\ChinaTelecomCard => [
- 100 => '8_100',
- 200 => '8_200'
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- //回调地址,由上游手动在后台设置的。
- const NOTIFY_URL = BASE_SITE_URL."/mobile/callback/refill_xiaochuang.php";
- }
|