WP_Filesystem_FTPext::atime() WordPress Method
The atime() method is part of the WP_Filesystem_FTPext class, which is used to interact with an FTP server. This particular method is used to get the last access time of a file.
WP_Filesystem_FTPext::atime( string $file ) #
Gets the file’s last access time.
Contents
Parameters
- $file
(string)(Required)Path to file.
Return
(int|false) Unix timestamp representing last access time, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-ftpext.php
public function atime( $file ) { return false; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |