SplFileInfo::getATime
Gets last access time of the file
Description
public intfalse SplFileInfo::getATime()
Parameters
This function has no parameters.
Return Values
Returns the time the file was last accessed on success, or false
on failure.
Errors/Exceptions
Throws RuntimeException on error.
Examples
Example #1 SplFileInfo::getATime example
<?php
$info = new SplFileInfo('example.jpg');
echo 'Last accessed at ' . date('g:i a', $info->getATime());
?>
The above example will output
something similar to:
See Also
- fileatime
- SplFileInfo::getCTime
- SplFileInfo::getMTime