Avocado.LightEdition/AvocadoEdition_Light/plugin/sns/twitter/clearsessions.php
TATECK ba0315ddc8 최초 배포
최초 배포
2022-09-17 20:50:50 +09:00

14 lines
277 B
PHP

<?php
include_once("./_common.php");
/**
* @file
* Clears PHP sessions and redirects to the connect page.
*/
/* Load and clear sessions */
session_start();
session_destroy();
/* Redirect to page with the connect to Twitter option. */
header('Location: ./connect.php');