WP_Filesystem_Direct::atime()publicWP 2.5.0

Gets the file's last access time.

Method of the class: WP_Filesystem_Direct{}

No Hooks.

Return

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

Usage

$WP_Filesystem_Direct = new WP_Filesystem_Direct();
$WP_Filesystem_Direct->atime( $file );
$file(string) (required)
Path to file.

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_Direct::atime() code WP 6.5.2

public function atime( $file ) {
	return @fileatime( $file );
}