how to log out php

Solutions on MaxInterview for how to log out php by the best coders in the world

showing results for - "how to log out php"
Maelyne
16 May 2017
1session_destroy();
2session_unset();
3unset($_SESSION["loggedin"]);
4$_SESSION = array();