'; print_r($_SESSION); echo ''; } /** * Destroy the entire session */ public static function destroy() { if (self::$_sessionStarted == true) { session_unset(); // Might need work session_destroy(); } } }