hi Alain,
1 Tag sind 24 * 60 * 60 => 86.400
Das Alter einer Datei bekomst Du mit
$mtime = (stat($filename))[9];
bzw. mit der stat() Funktion i.A.
Die Funktion stat liefert dazu einiges:
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)
= stat($filename);
0 dev device number of filesystem
1 ino inode number
2 mode file mode (type and permissions)
3 nlink number of (hard) links to the file
4 uid numeric user ID of file's owner
5 gid numeric group ID of file's owner
6 rdev the device identifier (special files only)
7 size total size of file, in bytes
8 atime last access time since the epoch
9 mtime last modify time since the epoch
10 ctime inode change time (NOT creation time!) since the
Gruss, Rolf
--
OpenForum - mein OpenSource-Project:
http://www.rolfrost.de/openforum.txt
Klein, stark, mächtig, riesig... einfach gut ;-)
OpenForum - mein OpenSource-Project:
http://www.rolfrost.de/openforum.txt
Klein, stark, mächtig, riesig... einfach gut ;-)