hello,
I am saving my sessions in another directory from /temp directory.
say /session
directory.( using session_save_path("session")
)
also, there is a code to kill the session after 10 minuets from creation and logout.
but I mentioned that if the user logs in and for example shut down his computer, my log out and session destroy code doses not run, so the session file will remain in the session directory.
I wanted to know is there is a way to delete session files in /session
after a time from creation?
I used this code for it
if ($handle = opendir('sessions')) {
while (false !== ($file = readdir($handle))) {
if (filectime($file)< (time()-600)) { // 600 = 10*60
unlink($file);
}
}
}
but, not working, I think it couldn't get the creation time by filectime($file)
thanks