Syntax
| int fileatime ( string $filename ); |
Definition and Usage
Gets the last access time of the given file.
Paramters
| Parameter | Description |
|---|---|
| filename | Path to the file. |
Return Value
Returns the time the file was last accessed, or FALSE in case of an error. The time is returned as a Unix timestamp.
Example
Following is the usage of this function:
<?php |