PHP
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

posix_getgrgid> <posix_geteuid
Last updated: Fri, 02 Jan 2009

view this page in

posix_getgid

(PHP 4, PHP 5)

posix_getgidReturn the real group ID of the current process

Описание

int posix_getgid ( void )

Return the numeric real group ID of the current process.

Возвращаемые значения

Returns the real group id, as an integer.

Примеры

Пример #1 posix_getgid() example

This example will print out the real group id, even once the effective group id has been changed.

<?php
echo 'My real group id is '.posix_getgid(); //20
posix_setegid(40);
echo 
'My real group id is '.posix_getgid(); //20
echo 'My effective group id is '.posix_getegid(); //40
?>

Смотрите также



add a note add a note User Contributed Notes
posix_getgid
There are no user contributed notes for this page.

posix_getgrgid> <posix_geteuid
Last updated: Fri, 02 Jan 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites