Initial commit after re-install

This commit is contained in:
2026-02-25 19:12:32 +09:00
commit d2635610a4
539 changed files with 57575 additions and 0 deletions

24
logout.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
declare(strict_types=1);
require_once __DIR__ . '/auth/auth.php';
dreamgirl_session_start();
$_SESSION = [];
if (ini_get('session.use_cookies')) {
$params = session_get_cookie_params();
setcookie(
session_name(),
'',
time() - 42000,
$params['path'] ?? '/',
$params['domain'] ?? '',
(bool)($params['secure'] ?? false),
(bool)($params['httponly'] ?? true)
);
}
session_destroy();
header('Location: ' . dreamgirl_url('login.php'));
exit;