WP_Filesystem_SSH2::owner()publicWP 2.7.0

Gets the file owner.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

String|false. Username of the owner on success, false on failure.

Usage

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->owner( $file );
$file(string) (required)
Path to the file.

Changelog

Since 2.7.0 Introduced.

WP_Filesystem_SSH2::owner() code WP 6.4.3

public function owner( $file ) {
	$owneruid = @fileowner( $this->sftp_path( $file ) );

	if ( ! $owneruid ) {
		return false;
	}

	if ( ! function_exists( 'posix_getpwuid' ) ) {
		return $owneruid;
	}

	$ownerarray = posix_getpwuid( $owneruid );

	if ( ! $ownerarray ) {
		return false;
	}

	return $ownerarray['name'];
}