GC_Filesystem_FTPext::mtime()
最后更新于:2021-11-27 18:48:08
GC_Filesystem_FTPext::mtime( string$file)Gets the file modification time.
参数
- $file
-
(string) (Required) Path to file.
响应
(int|false) Unix timestamp representing modification time, false on failure.
源文件
文件: gc-admin/includes/class-gc-filesystem-ftpext.php
public function mtime( $file ) {
return ftp_mdtm( $this->link, $file );
}