je nach dem wo der server die sessions speichert ....
wenn es im filesystem ist, hilft evntl. das hier weiter:
Code:
function DeleteSessionID($sessionid) {
$orgpath = getcwd();
chdir(PHP_BINDIR);
chdir(session_save_path());
$path = realpath(getcwd()).'/';
if(file_exists($path.'sess_'.$sessionid)) {
// Delete it here
unlink($path.'sess_'.$sessionid);
} else {
// File not found
}
chdir($orgpath);
}
für
alle sessions müsstest du eben
alle session dateien löschen.