posix_ctermid | PHP 3.0.13 |
string posix_ctermid(void) |
|
Generates terminal path name (POSIX.1, 4.7.1). |
posix_getcwd | PHP 3.0.13 |
string posix_getcwd(void) |
|
Gets working directory pathname (POSIX.1, 5.2.2). |
posix_getegid | PHP 3.0.10 |
int posix_getegid(void) |
|
Gets the current effective group ID (POSIX.1, 4.2.1). |
posix_getgid | PHP 3.0.10 |
int posix_getgid(void) |
|
Gets the current group ID (POSIX.1, 4.2.1). |
posix_getgrgid | PHP 3.0.13 |
array posix_getgrgid(long gid) |
|
Gets information about a group by group ID (POSIX.1, 9.2.1). |
posix_getgrnam | PHP 3.0.13 |
array posix_getgrnam(string groupname) |
|
Gets information about a group by group name (POSIX.1, 9.2.1). |
posix_getgroups | PHP 3.0.10 |
array posix_getgroups(void) |
|
Gets supplementary group IDs (POSIX.1, 4.2.3). |
posix_getlogin | PHP 3.0.13 |
string posix_getlogin(void) |
|
Gets user name (POSIX.1, 4.2.4). |
posix_getpgid | PHP 3.0.10 |
int posix_getpgid(void) |
|
Gets the process group ID of the specified process (not a POSIX function, but a SVR4ism, so we compile conditionally). |
posix_getpgrp | PHP 3.0.10 |
int posix_getpgrp(void) |
|
Gets current process group ID (POSIX.1, 4.3.1). |
posix_getpid | PHP 3.0.10 |
int posix_getpid(void) |
|
Gets the current process ID (POSIX.1, 4.1.1). |
posix_getppid | PHP 3.0.10 |
int posix_getppid(void) |
|
Gets the parent process ID (POSIX.1, 4.1.1). |
posix_getpwnam | PHP 3.0.13 |
array posix_getpwnam(string groupname) |
|
Gets information about a user by username (POSIX.1, 9.2.2). |
posix_getpwuid | PHP 3.0.13 |
array posix_getpwuid(long uid) |
|
Gets information about a user by user ID (POSIX.1, 9.2.2). |
posix_getrlimit | PHP 3.0.10 |
int posix_getrlimit(void) |
|
Gets system resource consumption limits (not a POSIX function, but a BSDism and a SVR4ism, so we compile conditionally). |
posix_getsid | PHP 3.0.10 |
int posix_getsid(void) |
|
Gets process group ID of session leader (not a POSIX function, but a SVR4ism, so we compile conditionally). |
posix_getuid | PHP 3.0.10 |
int posix_getuid(void) |
|
Gets the current user ID (POSIX.1, 4.2.1). |
posix_isatty | PHP 3.0.13 |
bool posix_isatty(int fd) |
|
Determine if file descriptor is a tty (POSIX.1, 4.7.1). |
posix_kill | PHP 3.0.13 |
bool posix_kill(int pid, int sig) |
|
Sends a signal to a process (POSIX.1, 3.3.2). |
posix_mkfifo | PHP 3.0.13 |
bool posix_mkfifo(string pathname, int mode) |
|
Makes a FIFO special file (POSIX.1, 5.4.2). |
posix_setegid | PHP 4.0.2 |
bool posix_setegid(long uid) |
|
Sets effective group ID. |
posix_seteuid | PHP 4.0.2 |
bool posix_seteuid(long uid) |
|
Sets effective user ID. |
posix_setgid | PHP 3.0.13 |
bool posix_setgid(int uid) |
|
Sets group ID (POSIX.1, 4.2.2). |
posix_setpgid | PHP 3.0.13 |
bool posix_setpgid(int pid, int pgid) |
|
Sets process group ID for job control (POSIX.1, 4.3.3). |
posix_setsid | PHP 3.0.13 |
int posix_setsid(void) |
|
Creates session and sets process group ID (POSIX.1, 4.3.2). |
posix_setuid | PHP 3.0.13 |
bool posix_setuid(long uid) |
|
Sets user ID (POSIX.1, 4.2.2). |
posix_times | PHP 3.0.13 |
array posix_times(void) |
|
Gets process times (POSIX.1, 4.5.2). |
posix_ttyname | PHP 3.0.13 |
string posix_ttyname(int fd) |
|
Determines terminal device name (POSIX.1, 4.7.2). |
posix_uname | PHP 3.0.10 |
array posix_uname(void) |
|
Gets system name (POSIX.1, 4.4.1). |