From a80e9af9abcff4307c44c8354e54d81be00ec46e Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Thu, 27 Jan 2000 02:44:48 +0000 Subject: [PATCH] Note that file*time() returns a Unix timestamp. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@18842 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/filesystem.xml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/functions/filesystem.xml b/functions/filesystem.xml index e0ecf71221..4cb44d6c47 100644 --- a/functions/filesystem.xml +++ b/functions/filesystem.xml @@ -634,17 +634,21 @@ $fcontents = join( '', file( 'http://www.php.net' ) ); int fileatime string filename - + + Returns the time the file was last accessed, or false in case of - an error. - - + an error. The time is returned as a Unix timestamp. + + + The results of this function are cached. See clearstatcache for more details. - + + + filectime @@ -658,7 +662,7 @@ $fcontents = join( '', file( 'http://www.php.net' ) ); Returns the time the file was last changed, or false in case of - an error. + an error. The time is returned as a Unix timestamp. The results of this function are cached. See @@ -724,7 +728,7 @@ $fcontents = join( '', file( 'http://www.php.net' ) ); Returns the time the file was last modified, or false in case of - an error. + an error. The time is returned as a Unix timestamp. The results of this function are cached. See