[PHP함수]file_exists


    해당경로에 파일 또는 디렉토리가 있는지 없는지 검사하는 함수
    해당경로에 파일이 있으면 TRUE반환 다른경우는 FALSE 반환
    ex)
    <?php
    $filepath = '/img/111.jpg'

    if (file_exists($filepath)){
    echo "파일이 존재함";
    }else{
    echo "파일없음";
    }
    ?>

    댓글

    Designed by JB FACTORY