本文整理汇总了PHP中common_session_SessionManager::endSession方法的典型用法代码示例。如果您正苦于以下问题:PHP common_session_SessionManager::endSession方法的具体用法?PHP common_session_SessionManager::endSession怎么用?PHP common_session_SessionManager::endSession使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common_session_SessionManager
的用法示例。
在下文中一共展示了common_session_SessionManager::endSession方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: logout
/**
* Logout, destroy the session and back to the login page
*/
public function logout()
{
common_session_SessionManager::endSession();
$this->redirect(_url('entry', 'Main', 'tao'));
}
示例2: logout
public function logout()
{
common_session_SessionManager::endSession();
$this->redirect(ROOT_URL);
}
示例3: reset
/**
* This function is used to reset the session values.
*
* @access public
* @author Joel Bout, <joel@taotesting.com>
* @return void
*/
public function reset()
{
common_Logger::d('resetting session');
common_session_SessionManager::endSession();
$this->update();
}
示例4: logout
/**
* Logout the current user. The session will be entirely reset.
*
* @access public
* @author Jerome Bogaerts, <jerome@taotesting.com>
* @return boolean
*/
public function logout()
{
return \common_session_SessionManager::endSession();
}
示例5: lock
/**
*
* @author Lionel Lecaque, lionel@taotesting.com
*/
public function lock()
{
$this->shieldService->shieldExtensions();
common_session_SessionManager::endSession();
}