WP_Filesystem_FTPext::mtime
Gets the file modification time.
Method of the class: WP_Filesystem_FTPext{}
No Hooks.
Returns
Int|false. Unix timestamp representing modification time, false on failure.
Usage
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->mtime( $file );
- $file(string) (required)
- Path to file.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_FTPext::mtime() WP Filesystem FTPext::mtime code WP 6.9
public function mtime( $file ) {
return ftp_mdtm( $this->link, $file );
}