Files
Fuxsto-V3/user/logout.php
2025-10-18 14:46:52 +08:00

14 lines
231 B
PHP

<?php
// 启动会话
session_start();
// 清空 $_SESSION 数组
$_SESSION = [];
// 如果需要,调用 session_destroy() 销毁会话
session_destroy();
// 可选:重定向到某个页面
header("Location: ./");
exit();
?>