[PHP] PHP file 퍼미션 / 존재 확인 방법

Posted by [하늘이]
2016. 1. 21. 19:26 IT/PHP Web JS CSS HTML..
반응형


생활코딩 사이트에서 공부하며 정리한 내용입니다

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 )

http://php.net/manual/kr/function.file-exists.php

반응형