8 lines
90 B
PHP
8 lines
90 B
PHP
<?php
|
|
// 登出
|
|
|
|
session_start();
|
|
session_destroy();
|
|
header('Location: index.php');
|
|
exit;
|