WP_Filesystem_SSH2::owner( string $file )


Parameters

$file

(string) (Required)


Return

(string|false)


Source

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

	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'];
	}