From fb0bc2a0bb69dc0137d235dd1ed586c87d541a76 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Fri, 9 May 2003 23:18:26 +0000 Subject: [PATCH] good suggestion by didou git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@126424 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/stat.xml | 32 ++++++++++++------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/reference/filesystem/functions/stat.xml b/reference/filesystem/functions/stat.xml index 19a1803d38..43fd4a055b 100644 --- a/reference/filesystem/functions/stat.xml +++ b/reference/filesystem/functions/stat.xml @@ -1,5 +1,5 @@ - + @@ -30,77 +30,77 @@ returning these attributes in a numeric array, they can be accessed with associative indices, as noted next to each parameter; this is available since PHP 4.0.6: - + - device (can also be accessed as dev) + 0 : device (can also be accessed as dev) - inode (can also be accessed as ino) + 1 : inode (can also be accessed as ino) - inode protection mode (can also be accessed as mode) + 2 : inode protection mode (can also be accessed as mode) - number of links (can also be accessed as nlink) + 3 : number of links (can also be accessed as nlink) - user id of owner (can also be accessed as uid) + 4 : user id of owner (can also be accessed as uid) - group id owner (can also be accessed as gid) + 5 : group id owner (can also be accessed as gid) - device type if inode device (can also be accessed as rdev + 6 : device type if inode device (can also be accessed as rdev ) * - size in bytes (can also be accessed as size) + 7 : size in bytes (can also be accessed as size) - time of last access (can also be accessed as atime) + 8 : time of last access (can also be accessed as atime) - time of last modification (can also be accessed as mtime + 9 : time of last modification (can also be accessed as mtime ) - time of last change (can also be accessed as ctime) + 10 : time of last change (can also be accessed as ctime) - blocksize for filesystem I/O (can also be accessed as + 11 : blocksize for filesystem I/O (can also be accessed as blksize) * - number of blocks allocated (can also be accessed as + 12 : number of blocks allocated (can also be accessed as blocks) - + * - only valid on systems supporting the st_blksize type--other systems (i.e. Windows) return -1.