WP_Filesystem_SSH2::group()publicWP 2.7.0

Gets the file's group.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

String|false. The group on success, false on failure.

Usage

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

Changelog

Since 2.7.0 Introduced.

WP_Filesystem_SSH2::group() code WP 6.5.2

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 );

	if ( ! $grouparray ) {
		return false;
	}

	return $grouparray['name'];
}