PHP PHP 서버에 있는 파일유무를 확인할 때
페이지 정보
본문
$filepath = "../upload_files/heavening.jpg";
if(file_exists($filepath))
{
echo "있어요!!!";
}
else
{
echo "없어요..ㅠㅠ";
}
위의 예제처럼 file_exists(파일경로와이름)을 사용하여
있을경우는 TRUE값을 없을때는 FALSE값을 얻을 수 있습니다.
관련사이트
http://heavening.tistory.com/22
if(file_exists($filepath))
{
echo "있어요!!!";
}
else
{
echo "없어요..ㅠㅠ";
}
위의 예제처럼 file_exists(파일경로와이름)을 사용하여
있을경우는 TRUE값을 없을때는 FALSE값을 얻을 수 있습니다.
관련사이트
http://heavening.tistory.com/22
댓글목록
등록된 댓글이 없습니다.