1234567891011121314151617181920 |
- <?php
- namespace refill\afand;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.98.208.197/api/telpay';
- const QUERY_URL = 'http://47.98.208.197/api/telpay/query';
- const MCHID = 10019;
- const KEY = '953b8e10a70ef4e85b77f09448c0e316';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_afand.php";
- const operator = [
- mtopcard\ChinaMobileCard => 2,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 3
- ];
- }
|