本文整理汇总了PHP中Guest::auth方法的典型用法代码示例。如果您正苦于以下问题:PHP Guest::auth方法的具体用法?PHP Guest::auth怎么用?PHP Guest::auth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Guest
的用法示例。
在下文中一共展示了Guest::auth方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: go
public function go()
{
try {
// select visitor type (user or guest)
if (self::CheckSession()) {
$visitor = new User($_SESSION['user']['name']);
} elseif (self::checkCookies()) {
$visitor = new User($_COOKIE['name']);
} else {
$visitor = new Guest();
}
// select action
$action = $visitor->getAction();
// perform action
if ($action) {
switch ($action) {
case "login":
if ($visitor->auth()) {
$visitor = new User($visitor->getName());
$visitor->login();
}
break;
case "register":
if ($visitor->register()) {
$visitor = new User($visitor->getName());
$visitor->login();
}
break;
case "logout":
$visitor->logout();
break;
case "delete":
$visitor->remove();
break;
}
$this->reload();
}
// show html
if ($visitor instanceof User) {
$this->templateVars['name'] = $visitor->getName();
$this->templateVars['id'] = $visitor->getId();
$this->templateVars['regdate'] = $visitor->getRegDate();
$this->templateVars['lastvisit'] = $visitor->getLastVisit();
$this->showTemplate('inner');
} elseif ($visitor instanceof Guest) {
if (isset($_SESSION['message'])) {
$this->templateVars['message'] = $_SESSION['message'];
unset($_SESSION['message']);
}
if (isset($_SESSION['guest']['entered_name'])) {
$this->templateVars['entered_name'] = $_SESSION['guest']['entered_name'];
unset($_SESSION['guest']['entered_name']);
}
$this->showTemplate('login');
} else {
throw new \Exception();
}
} catch (\Exception $e) {
$_SESSION['message'] = $e->getMessage();
$this->reload();
}
}