Auth::logout() -- Déconnecte un utilisateur identifié
Description
Déconnecte un utilisateur actuellement identifié.
Note
Cette fonction ne peut pas être appelée de façon statique.
|
Auth::listUsers() (Previous)
|
(Next) Auth::removeUser()
|
|
|
Download Documentation
|
Last updated: Sun, 07 Sep 2008 |
|
Do you think that something on this page is wrong? Please file a bug report or add a note.
|
| User Notes: |
Note by: kbailey@freewayprojects.com
Just thought I'd mention that the logout function does not seem to unset the $_SESSION variables.
To unset all $_SESSION variables I used
session_unset();
just before the
a->logout();
call.
Please see
http://uk2.php.net/manual/en/function.session-unset.php
for details RE using session_unset().
|
|