[php] file_exists 파일이 있는지 확인

프로그래밍/PHP|2015. 1. 27. 11:27
반응형

file_exists 파일이 있는지를 확인한다..

예제

<?php
$filename 
'/path/to/foo.txt';

if (
file_exists($filename)) {
    echo 
"있다";
} else {
    echo 
"없다ist";
}
?> 

[출처] 지극히 개인적인 블로그 | ossang's (http://artoflifei.tistory.com/46)


반응형

댓글()