本文整理汇总了PHP中Engine::clearSession方法的典型用法代码示例。如果您正苦于以下问题:PHP Engine::clearSession方法的具体用法?PHP Engine::clearSession怎么用?PHP Engine::clearSession使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Engine
的用法示例。
在下文中一共展示了Engine::clearSession方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: authenticate
private function authenticate()
{
//Try gaining access to the Facebook PHP SDK
try {
$accessToken = SDK::instance()->helper->getAccessToken();
} catch (Facebook\Exceptions\FacebookResponseException $e) {
throw new Exception("Graph returned an error: " . $e->getMessage());
} catch (Facebok\Exceptions\FacebookSDKException $e) {
throw new Exception("Facebook SDK returned an error: " . $e->getMessage());
}
//Assuming it went well, let's process our login state
if (!is_null($this->getToken()) || isset($accessToken)) {
//This if statements means that it doesn't matter if the session token is set or not,
//as long as we have the access token either by request or by session, we can use the session
if (is_null($this->getToken())) {
$this->setToken((string) $accessToken);
header("Location: " . Engine::getRemoteAbsolutePath((new Analyse())->getURL()));
}
//Get basic user profile information such as user id, name and email to test whether the session works
try {
$this->importFromJson($this->getBasicUserProfile()->getGraphUser());
} catch (Facebook\Exceptions\FacebookResponseException $e) {
if (strpos($e->getMessage(), "The user has not authorized application") > -1) {
Engine::clearSession();
header("Location: " . Engine::getRemoteAbsolutePath((new Home())->getURL()));
} else {
throw $e;
}
exit;
}
return true;
} else {
return false;
}
}
示例2: deleteAccount
private function deleteAccount($dbh)
{
$this->deleteResults($dbh);
try {
$sql = "DELETE FROM Users WHERE USER_ID='" . User::instance()->id . "'";
$stmt = $dbh->prepare($sql);
$stmt->execute();
Engine::clearSession();
header('Location: ' . Engine::getRemoteAbsolutePath((new Home())->getURL()));
} catch (PDOException $e) {
throw new Exception(400, "Invalid request");
}
}