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