From a55d37629815bc5bef2924c6911a8869480824c9 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Mon, 13 May 2002 18:39:48 +0000 Subject: [PATCH] - Document third parameter git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@82120 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/touch.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reference/filesystem/functions/touch.xml b/reference/filesystem/functions/touch.xml index 136e01dc54..72a6d5c3e9 100644 --- a/reference/filesystem/functions/touch.xml +++ b/reference/filesystem/functions/touch.xml @@ -1,5 +1,5 @@ - + @@ -12,12 +12,15 @@ inttouch stringfilename inttime + intatime Attempts to set the access and modification time of the file named by filename to the value given by time. If the option time is not given, uses the present time. This is equivalent to what utime - (sometimes referred to as utimes) does. + (sometimes referred to as utimes) does. If the third option + atime is present, the access time of the given + filename is also modified. If the file does not exist, it is created.