1234567891011121314151617181920212223242526 |
- <?php
- namespace refill\huafutong;
- 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 = '189';
- const UserKey = '5acedcdd7714bd5f'; #正式key
- // const UserKey = 'de1b215bac0c1986'; #测试key
- const aesIV = '1111111111111111';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_huafutong.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const operator = [
- mtopcard\ChinaMobileCard => 3,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 2
- ];
- }
|