12345678910111213141516171819202122232425 |
- <?php
- namespace refill\huafutongman;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://me.sd.7080.cn:8080/?c=pay&m=create';
- const QUERY_URL= 'http://api.sd.7080.cn:8080/?m=querys&a=queryorder';
- const BALANCE_URL = 'http://api.sd.7080.cn:8080/?m=querys&a=querymoney';
- const MCH_ID = '204';
- const UserKey = 'e9e288235c1373a2'; #正式key
- const aesIV = '1111111111111111';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_huafutongman.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const operator = [
- mtopcard\ChinaMobileCard => 3,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 2
- ];
- }
|