本文整理匯總了PHP中SessionUtil::restart方法的典型用法代碼示例。如果您正苦於以下問題:PHP SessionUtil::restart方法的具體用法?PHP SessionUtil::restart怎麽用?PHP SessionUtil::restart使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SessionUtil
的用法示例。
在下文中一共展示了SessionUtil::restart方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: HomeBody
}
$pageBody;
if ($context->getPageID() == "home") {
require_once './lib/Site/HomeBody.php';
$pageBody = new HomeBody();
} else {
if ($context->getPageID() == "login") {
require_once './lib/Site/LoginBody.php';
$pageBody = new LoginBody($context);
} else {
if ($context->getPageID() == "register") {
require_once './lib/Site/RegisterBody.php';
$pageBody = new RegisterBody($context);
} else {
if ($context->getPageID() == "logout") {
SessionUtil::restart();
$context->setPageID("login");
require_once './lib/Site/LoginBody.php';
$pageBody = new LoginBody($context);
} else {
if ($context->getPageID() == "createInsertion") {
require_once './lib/Site/CreateInsertBody.php';
$pageBody = new CreateInsertBody($context);
} else {
if ($context->getPageID() == "myInserts") {
require_once './lib/Site/MyInsertsBody.php';
$pageBody = new MyInsertsBody();
} else {
if ($context->getPageID() == "myAccount") {
require_once './lib/Site/MyAccountBody.php';
$pageBody = new MyAccountBody($context);