WP_Filesystem_ftpsockets::group()publicWP 2.5.0

Gets the file's group.

Method of the class: WP_Filesystem_ftpsockets{}

No Hooks.

Return

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

Usage

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

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_ftpsockets::group() code WP 6.5.2

public function group( $file ) {
	$dir = $this->dirlist( $file );

	return $dir[ $file ]['group'];
}