WP_Filesystem_Base::atime( string $file )

Gets the file’s last access time.


Parameters

$file

(Required) Path to file.


Return

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


Source

File: wp-admin/includes/class-wp-filesystem-base.php

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

Changelog

Changelog
Version Description
2.5.0 Introduced.