⭐ in reply to How do I interpret mtime with stat()?
mtime as returned by (stat($filename))[9] is seconds since the epoch on your particular platform.
To see when the beginning of your machine's epoch was:
print scalar gmtime(0);
Some modules useful for working with date/time:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Answer: How do I interpret mtime with stat()?
by mitd (Curate) on Oct 21, 2000 at 21:17 UTC |