맛집 여행 캠핑 일상 생활

PHP 디렉토리안에 파일 리스트 가져오기 본문

LAMP

PHP 디렉토리안에 파일 리스트 가져오기

영은파더♥ 2017. 6. 1. 11:26

PHP 디렉토리안에 파일 리스트 가져오기


특정 디렉토리안에 파일리스트를 가져오는 예제소스입니다.

$DIR_PATH = "/var/www/html/";

if(is_dir($DIR_PATH)) {

if($dh = opendir($DIR_PATH)) {

while(($file = readdir($dh)) !== false) {

if ($file == "." || $file == "..") {

continue;

}

$_file = $DIR_PATH.$file;

if(is_file($_file)) {

echo "filename: ".$_file."<br>";

}

}

closedir($dh);

}

}


'LAMP' 카테고리의 다른 글

PHP include require 절대경로  (2) 2017.06.28
PHP 정규식 치환하기  (0) 2017.06.05
PHP Notice: Undefined offset 에러로그  (0) 2017.05.31
PHP $_POST 값 모두 출력하는 방법  (0) 2017.05.30
PHP strstr 끝에서 찾는 함수  (0) 2017.05.25
Trackback : | Comments :