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()
다른 서버의 파일 확인 경우
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 |