本文整理汇总了PHP中CApp::inPeace方法的典型用法代码示例。如果您正苦于以下问题:PHP CApp::inPeace方法的具体用法?PHP CApp::inPeace怎么用?PHP CApp::inPeace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CApp
的用法示例。
在下文中一共展示了CApp::inPeace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: rip
/**
* Make application die properly
*
* @return void
*/
static function rip()
{
// If the client doesn't support cookies, we destroy its session
// Sometimes, the cookie is empty while the client support cookies (url auth in IE)
/*if (empty($_COOKIE)) {
CSessionHandler::end();
}*/
//access log
include "./includes/access_log.php";
// Long request log
include "./includes/long_request_log.php";
if (CAppUI::$token_restricted || CAppUI::$auth_info && CAppUI::$auth_info->restricted) {
CSessionHandler::end(true);
} else {
// Explicit close of the session before object destruction
CSessionHandler::writeClose();
}
self::$inPeace = true;
die;
}