PHP 8.1.28 Released!

Constantes para posix_access()

Nota:

Estas constantes están disponibles desde PHP 5.1.0. Observe que algunas de ellas podrían no estar disponibles en su sistema.

POSIX_F_OK (integer)
Comprobar si el fichero existe.
POSIX_R_OK (integer)
Comprobar si el fichero existe y tiene permisos de lectura.
POSIX_W_OK (integer)
Comprobar si el fichero existe y tiene permisos de escritura.
POSIX_X_OK (integer)
Comprobar si el fichero existe y tiene permisos de ejecución.
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top