|
użytkowników online: 57
|
OPINIE UŻYTKOWNIKÓW
|
Nie jestem webmasterem, ale i na mnie zrobiła wrażenie szybkość reakcji Darka na mój problem. Jego kompetencja i przede wszystkim zupełnie niemodna w dzisiejszych skomercjalizowanych czasach - zwykła ludzka życzliwość dla innego człowieka. Tacy ludzie to dziś gatunek niemal wymarły...
Leszek
Wojskowy Instytut Medyczny
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
CI. POSIX Functions
This module contains an interface to those functions defined in
the IEEE 1003.1 (POSIX.1) standards document which are not
accessible through other means. POSIX.1 for example defined the
open(), read(), write() and close() functions, too, which
traditionally have been part of PHP 3 for a long time. Some more
system specific functions have not been available before, though,
and this module tries to remedy this by providing easy access to
these functions.
| Ostrzeżenie |
Sensitive data can be retrieved with the POSIX functions, e.g.
posix_getpwnam() and friends. None of the
POSIX function perform any kind of access
checking when safe mode is enabled.
It's therefore strongly advised to
disable the POSIX extension at all (use
--disable-posix in your configure line) if you're
operating in such an environment.
|
Notatka: To rozszerzenie nie jest
dostępne na platformie Windows.
POSIX functions are enabled by default. You can disable POSIX-like
functions with --disable-posix.
Poniższe stałe są zdefiniowane w tym rozszerzeniu i stają się dostępne, gdy
rozszerzenie jest dokompilowane do PHP, lub załadowane dynamicznie przy starcie.
- POSIX_F_OK
(integer)
Check whether the file exists.
- POSIX_R_OK
(integer)
Check whether the file exists and has read permissions.
- POSIX_W_OK
(integer)
Check whether the file exists and has write permissions.
- POSIX_X_OK
(integer)
Check whether the file exists and has execute permissions.
Notatka:
These constants are available since PHP 5.1.0.
User Contributed NotesThere are no user contributed notes for this page
|