View file isp_api/func/exit.php

File size: 101B
<?php

session_unset();
session_destroy();
header('Location: index.php');
ob_end_flush();
exit();

?>