12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\yunchonggongfs;
- class config
- {
- const ORDER_URL = 'http://39.108.50.235:8911/api/order/submit';
- const QUERY_URL = 'http://39.108.50.235:8911/api/order/query';
- const BALANCE_URL = 'http://39.108.50.235:8911/api/account/balance';
- const APP_ID = 'MEEJnMSL9H';
- const APP_SECRET = 'cpWFarCEUDnCcMWQ';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunchonggongfs.php";
- const ProvinceItemId = [
- 25 => [
- 30 => 100012,
- 50 => 100013,
- 100 => 100014,
- 200 => 100015
- ], //'云南',
- 24 => [
- 30 => 100016,
- 50 => 100017,
- 100 => 100018,
- 200 => 100019
- ], //'贵州',
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- //key格式 卡类型-面值-regin_no
- const Price = [
- "4-30-24" => 28.23, "4-50-24" => 47.05, "4-100-24" => 94.1, "4-200-24" => 188.2,//贵州 24
- "4-30-25" => 28.23, "4-50-25" => 47.05, "4-100-25" => 94.1, "4-200-25" => 188.2,//云南 25
- ];
- }
|