[PHP] PHP file 퍼미션 / 존재 확인 방법
반응형
생활코딩 사이트에서 공부하며 정리한 내용입니다
https://opentutorials.org/course/62/5135
◆ 파일 읽을 수 있는지 체크
bool is_readable ( string $filename )
http://php.net/manual/kr/function.is-readable.php
◆ 파일 Write 할 수 있는지 체크
bool is_writable ( string $filename )
http://php.net/manual/kr/function.is-writable.php
◆ 파일이 존재하는지 체크
bool file_exists ( string $filename )
반응형
'IT > PHP Web JS CSS HTML..' 카테고리의 다른 글
[PHP] PHP 파일 업로드 / 받기 [파일 전송 / 파일 수신] (0) | 2016.01.21 |
---|---|
[PHP] PHP 디렉토리 제어 (0) | 2016.01.21 |
[PHP] PHP file / Open / Read / Write / Close [기본Api] (0) | 2016.01.21 |
[PHP] PHP namespace 기본 정의 (0) | 2016.01.20 |
[PHP] PHP include require include_once require_once (0) | 2016.01.19 |