1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2018/01/10
- */
- namespace Api;
- use service\HttpService;
- use service\SystemConfigService;
- class Express
- {
- protected static $api = [
- 'query'=>'https://wuliu.market.alicloudapi.com/kdi'
- ];
- public static function query($no,$type = '')
- {
- $appCode = SystemConfigService::config('system_express_app_code');
- if(!$appCode) return false;
- $res = HttpService::getRequest(self::$api['query'],compact('no','type'),['Authorization:APPCODE '.$appCode]);
- $result = json_decode($res,true)?:false;
- return $result;
- }
- }
|