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