WP_Filesystem_SSH2::owner( string $file )


Description Description


Parameters Parameters

$file

(string) (Required)


Top ↑

Return Return

(string|false)


Top ↑

Source 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 );
		return $ownerarray['name'];
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.