WP_Filesystem_Base::owner( string $file )

Get the file owner.


Parameters

$file

(string) (Required) Path to the file.


Return

(string|bool) Username of the user or false on error.


Source

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

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

Changelog

Changelog
Version Description
WP-2.5.0 Introduced.