|
update : 2015.11.03
php.shukuma.com검색:
|
posix_getgrgid(PHP 4, PHP 5) posix_getgrgid — Return info about a group by group id 설명
array posix_getgrgid
( int
$gid
)Gets information about a group provided its id. 인수
반환값The array elements returned are:
예제
Example #1 Example use of posix_getgrgid()
<?php위 예제의 출력 예시:
Array
(
[name] => toons
[passwd] => x
[members] => Array
(
[0] => tom
[1] => jerry
)
[gid] => 42
)
참고
|