1234567891011121314151617181920212223 |
- <?php
- namespace refill\jinglan;
- use mtopcard;
- class config
- {
- const API_URL = 'http://123.56.243.180:26000/mch/api/v2/form';
- const ACCOUNT = '1000000851';
- const KEY = '80281d20ed3f4bc9917334c5c2e6c773';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_jinglan.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ERRCODES = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '16', '17', '18'];
- }
|