12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace refill\menggu;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.26.80.21:8911/api/order/submit';
- const QUERY_URL = 'http://120.26.80.21:8911/api/order/query';
- const BALANCE_URL = 'http://120.26.80.21:8911/api/account/balance';
- const APP_ID = '1hqLCRUja7';
- const APP_SECRET = 'UbZBPJdeXcWaJtgy';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_menggu.php";
- const PRODUCT = [
- mtopcard\SinopecCard => [
- 500 => 100004,
- 1000 => 100005
- ]
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- public static function official_sn($content)
- {
- $data = explode(':',$content);
- if(count($data) > 1) {
- return $data[1];
- } else {
- return '';
- }
- }
- }
|