티스토리 뷰

1. file_exists - 역할

파일 이름에 입력한 값이 실제로 존재하는 검사


2. file_exists 예제

◈ 코드


1
2
3
4
5
6
7
8
9
10
11
12
13
<body>
<?php
    $test_file = "test.txt";
 
    if(file_exists($test_file))
    {
        echo "파일 존재";
    }else{
        echo "파일이 존재하지 않음";
    }
    
?>
</body>






◈ 결과화면





◈ 설명


file_exists 를 이용하여 test.txt 파일이 존재하는 여부를 검사합니다




댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday