12345678910111213141516171819202122 |
- <?php
- namespace refill\lexianglt;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://103.216.152.8:8882?c=pay&m=create';
- const QUERY_URL= 'http://103.216.152.8:8883?m=querys&a=queryorder';
- const BALANCE_URL = 'http://103.216.152.8:8883?m=querys&a=querymoney';
- const MCH_ID = '62';
- const UserKey = 'c3318a032a7590a5';
- const aesIV = '1111111111111111';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_lexianglt.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const operator = [
- mtopcard\ChinaMobileCard => 3,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 2
- ];
- }
|