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

search for in the

posix_setpgid> <posix_seteuid
[edit] Last updated: Fri, 17 May 2013

view this page in

posix_setgid

(PHP 4, PHP 5)

posix_setgid Imposta il GID per il processo corrente

Descrizione

bool posix_setgid ( int $gid )

La funzione imposta il reale ID di gruppo per il processo. Poiché questa è una funzione privilegiata occorre avere gli opportuni privilegi (solitamente di root) per poterla eseguire. L'ordine corretto per richiamare la funzione è: posix_setgid() prima, posix_setuid() poi.

Restituisce TRUE in caso di successo, FALSE in caso di fallimento.



add a note add a note User Contributed Notes posix_setgid - [1 notes]
up
0
jac
1 year ago
if you're going to use this along with posix_setuid, make sure you call posix_setgid first:

<?php
define
(PROC_USER, 'john');
define (PROC_GRP, 'admins');
?>

following works:

<?php
$user
= posix_getpwnam( PROC_USER );
$group = posix_getgrnam( PROC_GRP);

echo
posix_getuid()."\n";
echo
posix_getgid()."\n";

posix_setgid($group['gid']);
posix_setuid($user['uid']);

echo
posix_getuid()."\n";
echo
posix_getgid()."\n";
?>

following will not set gid

<?php
$user
= posix_getpwnam( PROC_USER );
$group = posix_getgrnam( PROC_GRP);

echo
posix_getuid()."\n";
echo
posix_getgid()."\n";

posix_setuid($user['uid']);
posix_setgid($group['gid']);

echo
posix_getuid()."\n";
echo
posix_getgid()."\n";
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites