本文整理汇总了PHP中Req::getServerParam方法的典型用法代码示例。如果您正苦于以下问题:PHP Req::getServerParam方法的具体用法?PHP Req::getServerParam怎么用?PHP Req::getServerParam使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Req
的用法示例。
在下文中一共展示了Req::getServerParam方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: authorize
public function authorize(Req $req, Res $res, $args)
{
$grant_type = $req->getInput('grant_type');
$client_id = $req->getServerParam('PHP_AUTH_USER');
$client_secret = $req->getServerParam('PHP_AUTH_PW');
$oauth = new Oauth();
$result = $oauth->get_token($client_id, $client_secret, $grant_type);
return $res->authorize_output($result);
}
示例2: set_id
/**
* 根据 IP、当前小时、对应的路由、arg 参数、key 限制调用频率
*
* @param Req $req HTTP 请求对象
*/
protected function set_id(Req $req)
{
$ip = $req->getServerParam('REMOTE_ADDR');
$id = $ip . ':' . date('H');
$route = $req->getAttribute('route');
if ($route) {
$id .= ':' . $route->getIdentifier();
if (!empty($this->opts['arg'])) {
$id .= ':' . $route->getArgument($this->opts['arg']);
}
}
if (!empty($this->opts['key'])) {
$id .= ':' . $this->opts['key'];
}
$this->id = $id;
}
示例3: __invoke
public function __invoke(Req $req, Res $res, callable $next)
{
$request_uri = $req->getServerParam('REQUEST_URI');
if (strpos($request_uri, '/token') !== 0) {
// 获取 token 链接无需验证权限
$route = $req->getAttribute('route');
if (!$route) {
return $next($req, $res);
}
$action = ltrim($route->getCallable(), 'App\\Action\\');
$this->container->get('db');
$m_o = new \App\Model\Oauth();
$token = $req->getAccessToken();
$result = $m_o->valid_token($token, $action, $req);
if ($result[0] !== 0) {
return $res->output($result);
}
}
return $next($req, $res);
}