1234567891011121314151617181920212223242526 |
- <?php
- namespace refill\ruixundaman;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.76.172.131:8911/api/hf/order/submit';
- const QUERY_URL = 'http://120.76.172.131:8911/api/order/query';
- const BALANCE_URL = 'http://120.76.172.131:8911/api/account/balance';
- const APP_ID = '8tYeow0MYZ';
- const APP_SECRET = 'BJpyvAXRxrJRMlnq';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_ruixundaman.php";
- const PRODUCT = [
- mtopcard\ChinaUnicomCard => [
- 50 => 100105,
- 100 => 100106,
- 200 => 100107,
- ]
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|