GC_Filesystem_ftpsockets::mtime()

最后更新于:2021-11-27 19:33:20

GC_Filesystem_ftpsockets::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-ftpsockets.php

	public function mtime( $file ) {
		return $this->ftp->mdtm( $file );
	}