12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace refill\gaobiao;
- use mtopcard;
- class config
- {
- // 回调地址由上游配置
- const ORDER_URL = 'http://api.591ll.com/buy.aspx';
- const QUERY_URL= 'http://api.591ll.com/queryAgentId.aspx';
- const BALANCE_URL = 'http://api.591ll.com/queryAccount.aspx';
- const USER_ID= '57afb007-ccc5-44d2-ac06-6473fbbabb03';
- const KEY = '3C97BB5FED71F0BB';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_gaobiao.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- //key格式 卡类型-面值-regin_no
- const Price = [
- //移动
- "4-10-16" => 10.1, "4-20-16" => 20.1, "4-30-16" => 30.102, "4-50-16" => 50.1, "4-100-16" => 100.1, "4-200-16" => 200.1, "4-300-16" => 300.102,//河南 16
- //联通
- //电信
- "6-10-16" => 10.1, "6-20-16" => 20.1, "6-30-16" => 30.102, "6-50-16" => 50.1, "6-100-16" => 100.1, "6-200-16" => 200.1, "6-300-16" => 300.102, "6-500-16" => 500.1,//河南 16
- ];
- }
|