12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace refill\oufei;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://apitest.ofpay.com/newOnlineOrder.do';
- const QUERY_URL= 'http://apitest.ofpay.com/api/query.do';
- const BALANCE_URL = 'http://apitest.ofpay.com/newqueryuserinfo.do';
- const USER_ID = 'A08566';
- const USER_PWS = 'of111111';
- const KEY = 'OFCARD';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_oufei.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERR_NOS = [
- 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 319, 321, 331, 9998, 4001
- ];
- const Product = [
- mtopcard\ChinaMobileCard => [
- 10 => 1000010,
- 20 => 1000020,
- 50 => 1000050,
- 100 => 1000100,
- 200 => 1000200,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 2000030,
- 50 => 2000050,
- 100 => 2000100,
- 200 => 2000200,
- 300 => 2000300,
- 500 => 2000500,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 3000030,
- 50 => 3000050,
- 100 => 3000100,
- 200 => 3000200,
- ],
- ];
- }
|