From 20857c02501414c1a63a74893cb731a7ba31b87f Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Mon, 9 Feb 2004 17:21:30 +0000 Subject: [PATCH] fix #23432 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150861 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/ini.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/reference/session/ini.xml b/reference/session/ini.xml index 0f083ccf59..c883525184 100644 --- a/reference/session/ini.xml +++ b/reference/session/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -310,10 +310,12 @@ If you are using the default file-based session handler, your - filesystem must keep track of access times (atime). Windows FAT does + filesystem must keep track of access times (atime). Windows FAT does not so you will have to come up with another way to handle garbage collecting your session if you are stuck with a FAT filesystem or any other fs where atime tracking is not available. + Since PHP 4.2.3 it's used mtime (modified date) instead of atime. So, you + won't have problems with filesystems where atime tracking is not available.