1234567891011121314151617181920 |
- <?php
- namespace refill\shuoruan;
- use mtopcard;
- class config
- {
- const API_URL = 'http://api.sohan.hk:50080/API';
- const ACCOUNT = '18600608333';
- const KEY = '471D690CFB902BD8';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_shuoruan.php";
- const ExtHeaders = ['Content-Type: application/json;charset=GB2312'];
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- }
|