org\bovigo\vfs\vfsStream::getCurrentGroup PHP 메소드

getCurrentGroup() 공개 정적인 메소드

If the system does not support posix_getgid() the current group will be root (0).
public static getCurrentGroup ( ) : integer
리턴 integer
    public static function getCurrentGroup()
    {
        return function_exists('posix_getgid') ? posix_getgid() : self::GROUP_ROOT;
    }