linyuee/core

core php library

Maintainers

Package info

github.com/linyuee/core

pkg:composer/linyuee/core

Statistics

Installs: 96

Dependents: 2

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2017-12-05 10:33 UTC

This package is not auto-updated.

Last update: 2026-03-09 15:09:04 UTC


README

###核心代码模块 http模块使用方法:

$response = \Linyuee\Http\HttpHelper::curl('10.8.8.99/v4_1/upload_complete','POST',$params,$header);
$body = $response->getBody();

生成签名字符串使用方法

$sign_str = \Linyuee\Auth\Signature::SignMd5($params,$access_key_secret)

异常模块使用方法

throw new \Linyuee\Exception\ApiException('message','UNKNOWN_ERROR',400);