本文整理匯總了PHP中Psr\Http\Message\ServerRequestInterface::isGet方法的典型用法代碼示例。如果您正苦於以下問題:PHP ServerRequestInterface::isGet方法的具體用法?PHP ServerRequestInterface::isGet怎麽用?PHP ServerRequestInterface::isGet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Psr\Http\Message\ServerRequestInterface
的用法示例。
在下文中一共展示了ServerRequestInterface::isGet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: login
public function login(Request $request, Response $response) : Response
{
if ($request->isGet()) {
return $this->container->view->render($response, 'login.html.twig');
}
$input = $request->getParsedBody();
$form = ['valid' => true, 'fields' => ['username' => ['value' => $input['username']], 'password' => ['value' => '']]];
if (empty($input['username'])) {
$form['valid'] = false;
$form['fields']['username']['error'] = 'Enter username!';
}
if (empty($input['password'])) {
$form['valid'] = false;
$form['fields']['password']['error'] = 'Enter password!';
}
if (!$form['valid']) {
$this->container->flash->addMessage('form', $form);
return $response->withRedirect('');
}
try {
$user = $this->container->userRepository->getByUsername($input['username']);
} catch (\Tablak\ModelNotFoundException $e) {
$form['valid'] = false;
$form['fields']['username']['error'] = 'Username not found!';
$this->container->flash->addMessage('form', $form);
return $response->withRedirect('');
}
if (!password_verify($input['password'], $user->password)) {
$form['valid'] = false;
$form['fields']['password']['error'] = 'Wrong password!';
$this->container->flash->addMessage('form', $form);
return $response->withRedirect('');
}
$_SESSION['user_id'] = $user->id;
return $response->withRedirect($this->container->router->pathFor('search-tabs'));
}