IT/PHP Web JS CSS HTML..
[PHP] PHP file 퍼미션 / 존재 확인 방법
[하늘이]
2016. 1. 21. 19:26
반응형
생활코딩 사이트에서 공부하며 정리한 내용입니다
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 )
반응형