📄 logout.php
字号:
<?php
require_once('includes/config.inc.php');
$page_title='Logout';
include('includes/header.html');
if(!isset($_SESSION['first_name'])){
$url=BASE_URL.'index.php';
ob_end_clean();
header("Location:$url");
exit();
}else{
$_SESSION=array();
session_destroy();
setcookie(session_name(),'',time()-300);
}
echo 'You are now logged out.';
include('includes/footer.html');
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -