123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?php
- function posix_kill(int $process_id, int $signal): bool {}
- function posix_getpid(): int {}
- function posix_getppid(): int {}
- function posix_getuid(): int {}
- function posix_setuid(int $user_id): bool {}
- function posix_geteuid(): int {}
- function posix_seteuid(int $user_id): bool {}
- function posix_getgid(): int {}
- function posix_setgid(int $group_id): bool {}
- function posix_getegid(): int {}
- function posix_setegid(int $group_id): bool {}
- function posix_getgroups(): array|false {}
- function posix_getlogin(): string|false {}
- function posix_getpgrp(): int {}
- function posix_setsid(): int {}
- function posix_setpgid(int $process_id, int $process_group_id): bool {}
- function posix_getpgid(int $process_id): int|false {}
- function posix_getsid(int $process_id): int|false {}
- function posix_uname(): array|false {}
- function posix_times(): array|false {}
- function posix_ctermid(): string|false {}
- function posix_ttyname($file_descriptor): string|false {}
- function posix_isatty($file_descriptor): bool {}
- function posix_getcwd(): string|false {}
- function posix_mkfifo(string $filename, int $permissions): bool {}
- function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {}
- function posix_access(string $filename, int $flags = 0): bool {}
- function posix_getgrnam(string $name): array|false {}
- function posix_getgrgid(int $group_id): array|false {}
- function posix_getpwnam(string $username): array|false {}
- function posix_getpwuid(int $user_id): array|false {}
- function posix_getrlimit(): array|false {}
- function posix_setrlimit(int $resource, int $soft_limit, int $hard_limit): bool {}
- function posix_get_last_error(): int {}
- function posix_errno(): int {}
- function posix_strerror(int $error_code): string {}
- function posix_initgroups(string $username, int $group_id): bool {}
|