本文整理汇总了PHP中Model\User::SetUsername方法的典型用法代码示例。如果您正苦于以下问题:PHP User::SetUsername方法的具体用法?PHP User::SetUsername怎么用?PHP User::SetUsername使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Model\User
的用法示例。
在下文中一共展示了User::SetUsername方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onSubmit
private function onSubmit()
{
$username = $this->registerView->GetUsername();
$password1 = $this->registerView->GetPassword1();
$password2 = $this->registerView->GetPassword2();
try {
$user = new User();
if ($password1 === $password2) {
$this->registerModel->SetUsername($username);
$hashedPassword = $this->registerModel->hashPassword($password1);
$user->SetPassword($hashedPassword);
} else {
$this->registerView->msgPasswordNotSame();
return;
}
$user->SetUsername($username);
$userRepository = new UserRepository();
$userRepository->add($user);
$loginView = new LoginView();
$agent = $loginView->GetAgent();
$sessionModel = new SessionModel();
$sessionModel->SetValidSession($agent);
$sessionModel->SetUser($username);
NavView::redirectToUMLRegisterMSG($username);
} catch (RegisterUsernameLengthException $e) {
$this->registerView->msgUsernameLength();
} catch (RegexException $e) {
$name = $e->getMessage();
$this->registerView->SetUsername($name);
$this->registerView->msgUsernameWrongChar($name);
} catch (RegisterException $e) {
$this->registerView->msgPasswordLength();
} catch (DbUserExistException $e) {
$this->registerView->msgUserExist();
} catch (RegisterUsernameMaxLengthException $e) {
$this->registerView->msgUsernameMaxLength();
} catch (RegisterPasswordMaxLengthException $e) {
$this->registerView->msgPasswordMaxLength();
}
}
示例2: getUserByUsername
public function getUserByUsername($username)
{
try {
$db = $this->connection();
$sql = "SELECT * FROM " . self::$dbTable . " WHERE " . self::$userName . " = ?";
$params = array($username);
$query = $db->prepare($sql);
$query->execute($params);
$result = $query->fetch();
if ($result) {
$user = new User();
$user->SetUsername($result[self::$userName]);
$user->SetHash($result[self::$password]);
$user->SetUserID($result[self::$userID]);
return $user;
} else {
return NULL;
}
} catch (\PDOException $e) {
throw new \Exception();
}
}