WP_Filesystem_Base::atime
Gets the file's last access time.
Method of the class: WP_Filesystem_Base{}
No Hooks.
Returns
Int|false. Unix timestamp representing last access time, false on failure.
Usage
$WP_Filesystem_Base = new WP_Filesystem_Base(); $WP_Filesystem_Base->atime( $file );
- $file(string) (required)
- Path to file.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_Base::atime() WP Filesystem Base::atime code WP 6.9.1
public function atime( $file ) {
return false;
}