posix_access() checks the user's permission of a file.
Замечание: Когда опция safe mode включена, PHP проверяет, имеют ли файлы/каталоги, с которыми вы собираетесь работать, такой же UID (владельца), как и выполняемый скрипт.
The name of the file to be tested.
A mask consisting of one or more of POSIX_F_OK, POSIX_R_OK, POSIX_W_OK and POSIX_X_OK. Defaults to POSIX_F_OK.
POSIX_R_OK, POSIX_W_OK and POSIX_X_OK request checking whether the file exists and has read, write and execute permissions, respectively. POSIX_F_OK just requests checking for the existence of the file.
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Пред. | Начало | След. |
POSIX Functions | Уровень выше | posix_ctermid |