php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
posix.stub.php
Go to the documentation of this file.
1<?php
2
4
9const POSIX_F_OK = UNKNOWN;
14const POSIX_X_OK = UNKNOWN;
19const POSIX_W_OK = UNKNOWN;
24const POSIX_R_OK = UNKNOWN;
25
26#ifdef S_IFREG
31const POSIX_S_IFREG = UNKNOWN;
32#endif
33#ifdef S_IFCHR
38const POSIX_S_IFCHR = UNKNOWN;
39#endif
40#ifdef S_IFBLK
45const POSIX_S_IFBLK = UNKNOWN;
46#endif
47#ifdef S_IFIFO
52const POSIX_S_IFIFO = UNKNOWN;
53#endif
54#ifdef S_IFSOCK
59const POSIX_S_IFSOCK = UNKNOWN;
60#endif
61#ifdef RLIMIT_AS
66const POSIX_RLIMIT_AS = UNKNOWN;
67#endif
68#ifdef RLIMIT_CORE
73const POSIX_RLIMIT_CORE = UNKNOWN;
74#endif
75#ifdef RLIMIT_CPU
80const POSIX_RLIMIT_CPU = UNKNOWN;
81#endif
82#ifdef RLIMIT_DATA
87const POSIX_RLIMIT_DATA = UNKNOWN;
88#endif
89#ifdef RLIMIT_FSIZE
94const POSIX_RLIMIT_FSIZE = UNKNOWN;
95#endif
96#ifdef RLIMIT_LOCKS
101const POSIX_RLIMIT_LOCKS = UNKNOWN;
102#endif
103#ifdef RLIMIT_MEMLOCK
108const POSIX_RLIMIT_MEMLOCK = UNKNOWN;
109#endif
110#ifdef RLIMIT_MSGQUEUE
115const POSIX_RLIMIT_MSGQUEUE = UNKNOWN;
116#endif
117#ifdef RLIMIT_NICE
122const POSIX_RLIMIT_NICE = UNKNOWN;
123#endif
124#ifdef RLIMIT_NOFILE
129const POSIX_RLIMIT_NOFILE = UNKNOWN;
130#endif
131#ifdef RLIMIT_NPROC
136const POSIX_RLIMIT_NPROC = UNKNOWN;
137#endif
138#ifdef RLIMIT_RSS
143const POSIX_RLIMIT_RSS = UNKNOWN;
144#endif
145#ifdef RLIMIT_RTPRIO
150const POSIX_RLIMIT_RTPRIO = UNKNOWN;
151#endif
152#ifdef RLIMIT_RTTIME
157const POSIX_RLIMIT_RTTIME = UNKNOWN;
158#endif
159#ifdef RLIMIT_SIGPENDING
165#endif
166#ifdef RLIMIT_STACK
171const POSIX_RLIMIT_STACK = UNKNOWN;
172#endif
173#ifdef RLIMIT_KQUEUES
178const POSIX_RLIMIT_KQUEUES = UNKNOWN;
179#endif
180#ifdef RLIMIT_NPTS
185const POSIX_RLIMIT_NPTS = UNKNOWN;
186#endif
187#ifdef HAVE_SETRLIMIT
192const POSIX_RLIMIT_INFINITY = UNKNOWN;
193#endif
194#ifdef _SC_ARG_MAX
199const POSIX_SC_ARG_MAX = UNKNOWN;
200#endif
201#ifdef _SC_CHILD_MAX
206const POSIX_SC_CHILD_MAX = UNKNOWN;
207#endif
208#ifdef _SC_CLK_TCK
213const POSIX_SC_CLK_TCK = UNKNOWN;
214#endif
215#ifdef _SC_PAGESIZE
220const POSIX_SC_PAGESIZE = UNKNOWN;
221#endif
222#ifdef _SC_NPROCESSORS_CONF
228#endif
229#ifdef _SC_NPROCESSORS_ONLN
235#endif
236#ifdef _PC_LINK_MAX
241const POSIX_PC_LINK_MAX = UNKNOWN;
242#endif
243#ifdef _PC_MAX_CANON
248const POSIX_PC_MAX_CANON = UNKNOWN;
249#endif
250#ifdef _PC_MAX_INPUT
255const POSIX_PC_MAX_INPUT = UNKNOWN;
256#endif
257#ifdef _PC_NAME_MAX
262const POSIX_PC_NAME_MAX = UNKNOWN;
263#endif
264#ifdef _PC_PATH_MAX
269const POSIX_PC_PATH_MAX = UNKNOWN;
270#endif
271#ifdef _PC_PIPE_BUF
276const POSIX_PC_PIPE_BUF = UNKNOWN;
277#endif
278#ifdef _PC_CHOWN_RESTRICTED
284#endif
285#ifdef _PC_NO_TRUNC
290const POSIX_PC_NO_TRUNC = UNKNOWN;
291#endif
292#ifdef _PC_ALLOC_SIZE_MIN
298#endif
299#ifdef _PC_SYMLINK_MAX
304const POSIX_PC_SYMLINK_MAX = UNKNOWN;
305#endif
306
307function posix_kill(int $process_id, int $signal): bool {}
308
310
312
314
315function posix_setuid(int $user_id): bool {}
316
318
319#ifdef HAVE_SETEUID
320function posix_seteuid(int $user_id): bool {}
321#endif
322
324
325function posix_setgid(int $group_id): bool {}
326
328
329#ifdef HAVE_SETEGID
330function posix_setegid(int $group_id): bool {}
331#endif
332
333#ifdef HAVE_GETGROUPS
338function posix_getgroups(): array|false {}
339#endif
340
341#ifdef HAVE_GETLOGIN
342function posix_getlogin(): string|false {}
343#endif
344
346
347#ifdef HAVE_SETSID
349#endif
350
351function posix_setpgid(int $process_id, int $process_group_id): bool {}
352
353#ifdef HAVE_GETPGID
354function posix_getpgid(int $process_id): int|false {}
355#endif
356
357#ifdef HAVE_GETSID
358function posix_getsid(int $process_id): int|false {}
359#endif
360
365function posix_uname(): array|false {}
366
371function posix_times(): array|false {}
372
373
374#ifdef HAVE_CTERMID
375function posix_ctermid(): string|false {}
376#endif
377
379function posix_ttyname($file_descriptor): string|false {}
380
382function posix_isatty($file_descriptor): bool {}
383
384function posix_getcwd(): string|false {}
385
386#ifdef HAVE_MKFIFO
387function posix_mkfifo(string $filename, int $permissions): bool {}
388#endif
389
390#ifdef HAVE_MKNOD
391function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {}
392#endif
393
394function posix_access(string $filename, int $flags = 0): bool {}
395
396#ifdef HAVE_EACCESS
397function posix_eaccess(string $filename, int $flags = 0): bool {}
398#endif
399
404function posix_getgrnam(string $name): array|false {}
405
410function posix_getgrgid(int $group_id): array|false {}
411
416function posix_getpwnam(string $username): array|false {}
417
422function posix_getpwuid(int $user_id): array|false {}
423
424#ifdef HAVE_GETRLIMIT
429function posix_getrlimit(?int $resource = null): array|false {}
430#endif
431
432#ifdef HAVE_SETRLIMIT
433function posix_setrlimit(int $resource, int $soft_limit, int $hard_limit): bool {}
434#endif
435
437
440
441function posix_strerror(int $error_code): string {}
442
443#ifdef HAVE_INITGROUPS
444function posix_initgroups(string $username, int $group_id): bool {}
445#endif
446
447function posix_sysconf(int $conf_id): int {}
448
449#ifdef HAVE_PATHCONF
450function posix_pathconf(string $path, int $name): int|false {}
451#endif
452
453#ifdef HAVE_FPATHCONF
455function posix_fpathconf($file_descriptor, int $name): int|false {}
456#endif
$filename
Definition create.php:9
posix_setsid()
posix_getpid()
const POSIX_S_IFREG
const POSIX_RLIMIT_RSS
posix_pathconf(string $path, int $name)
posix_setrlimit(int $resource, int $soft_limit, int $hard_limit)
posix_getegid()
posix_strerror(int $error_code)
posix_getpgid(int $process_id)
const POSIX_PC_NAME_MAX
posix_access(string $filename, int $flags=0)
const POSIX_RLIMIT_CORE
posix_getgrnam(string $name)
posix_times()
const POSIX_PC_LINK_MAX
const POSIX_S_IFCHR
const POSIX_RLIMIT_MEMLOCK
const POSIX_S_IFSOCK
const POSIX_SC_PAGESIZE
const POSIX_RLIMIT_NICE
posix_kill(int $process_id, int $signal)
const POSIX_PC_NO_TRUNC
posix_ctermid()
posix_getcwd()
const POSIX_PC_SYMLINK_MAX
posix_getgid()
posix_seteuid(int $user_id)
posix_getrlimit(?int $resource=null)
const POSIX_PC_MAX_CANON
const POSIX_RLIMIT_STACK
const POSIX_RLIMIT_NPROC
posix_sysconf(int $conf_id)
posix_errno()
const POSIX_RLIMIT_FSIZE
posix_get_last_error()
const POSIX_SC_CLK_TCK
posix_setegid(int $group_id)
const POSIX_SC_NPROCESSORS_CONF
const POSIX_S_IFIFO
const POSIX_S_IFBLK
posix_getuid()
const POSIX_RLIMIT_RTPRIO
posix_getpwnam(string $username)
const POSIX_RLIMIT_NOFILE
const POSIX_RLIMIT_SIGPENDING
posix_getsid(int $process_id)
const POSIX_SC_NPROCESSORS_ONLN
const POSIX_RLIMIT_AS
posix_setpgid(int $process_id, int $process_group_id)
const POSIX_SC_CHILD_MAX
const POSIX_R_OK
posix_ttyname($file_descriptor)
posix_getgrgid(int $group_id)
posix_getppid()
const POSIX_PC_CHOWN_RESTRICTED
const POSIX_RLIMIT_INFINITY
const POSIX_RLIMIT_DATA
posix_fpathconf($file_descriptor, int $name)
const POSIX_W_OK
posix_setuid(int $user_id)
const POSIX_RLIMIT_CPU
posix_mkfifo(string $filename, int $permissions)
posix_getpgrp()
posix_geteuid()
posix_initgroups(string $username, int $group_id)
const POSIX_SC_ARG_MAX
posix_getgroups()
const POSIX_F_OK
Definition posix.stub.php:9
const POSIX_RLIMIT_KQUEUES
const POSIX_RLIMIT_NPTS
posix_setgid(int $group_id)
const POSIX_RLIMIT_RTTIME
const POSIX_PC_PIPE_BUF
const POSIX_RLIMIT_LOCKS
posix_mknod(string $filename, int $flags, int $major=0, int $minor=0)
const POSIX_X_OK
const POSIX_PC_MAX_INPUT
posix_isatty($file_descriptor)
posix_eaccess(string $filename, int $flags=0)
posix_getpwuid(int $user_id)
const POSIX_PC_PATH_MAX
const POSIX_RLIMIT_MSGQUEUE
posix_uname()
const POSIX_PC_ALLOC_SIZE_MIN
posix_getlogin()
function(EX_VAR(opline->result.var))