WP_Filesystem_SSH2::group( 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 group( $file ) {
		$gid = @filegroup( $this->sftp_path( $file ) );
		if ( ! $gid ) {
			return false;
		}
		if ( ! function_exists( 'posix_getgrgid' ) ) {
			return $gid;
		}
		$grouparray = posix_getgrgid( $gid );
		return $grouparray['name'];
	}


Top ↑

User Contributed Notes User Contributed Notes

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