update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the file group

SplFileInfo::getGroup

(PHP 5 >= 5.1.2)

SplFileInfo::getGroupGets the file group

설명

public int SplFileInfo::getGroup ( void )

Gets the file group. The group ID is returned in numerical format.

인수

이 함수는 인수가 없습니다.

반환값

The group id in numerical format.

오류/예외

Throws RuntimeException on error.

예제

Example #1 SplFileInfo::getGroup() example

<?php
$info 
= new SplFileInfo(__FILE__);
print_r(posix_getgrgid($info->getGroup()));
?>

위 예제의 출력 예시:

참고