본문으로 바로가기

php 파일 존재 체크

category [ Web 관련 ]/php 2023. 2. 24. 13:00

file_exists()  is_file() 그리고 file() 함수 사용

 

file_exists('/폴더/file.txt'); 처럼 안될 경우

file_exists('./폴더/file.txt'); 처럼 해볼 것

 

https://webisfree.com/2015-02-03/[php]-서버에-특정-파일이-있는지-확인-file-exists()-is-file()-file() 

 

[PHP] 서버에 특정 파일이 있는지 확인, file_exists(), is_file(), file()

특정 파일이 php 서버 저장소에 실제로 존재하는지 확인하기 위해 사용할 수 있는 PHP 함수에 대하여 알아보겠습니다.

webisfree.com

 

 

 

다른 서버의 파일 확인 경우

file_get_contents() 활용

  • 전체파일을 문자열로 읽어들이는 PHP 함수
  • 로컬파일, 원격파일 모두 가능
$str = file_get_contents('test.txt');
echo $str;
# John Smith
 
$str = file_get_contents('http://zetawiki.com/ex/txt/utf8hello.txt');
echo $str;

 

 

'[ Web 관련 ] > php' 카테고리의 다른 글

php 캐시 항상 삭제 하기  (0) 2023.06.02
php swich문 - 값이 중복일 경우 문법  (0) 2023.03.21
php 배열 합치기  (0) 2023.02.16
배열 관련  (0) 2023.02.03
연관배열 추가, 삭제 (=>)  (0) 2022.12.14