WP_Filesystem_FTPext::atime()publicWP 2.5.0

Gets the file's last access time.

Метод класса: WP_Filesystem_FTPext{}

Хуков нет.

Возвращает

int|false. Unix timestamp representing last access time, false on failure.

Использование

$WP_Filesystem_FTPext = new WP_Filesystem_FTPext();
$WP_Filesystem_FTPext->atime( $file );
$file(строка) (обязательный)
Path to file.

Список изменений

С версии 2.5.0 Введена.

Код WP_Filesystem_FTPext::atime() WP 6.5.2

public function atime( $file ) {
	return false;
}