123456789101112131415161718192021 |
- <?php
- namespace refill\suyuan;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.196.63.222:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://121.196.63.222:10186/plat/api/old/queryorder';
- const USER_ID= '200000';
- const KEY = '2a7533687d974571a2051ad555bfd2f5';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_suyuan.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- }
|