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