반응형
특정 디렉토리안에 파일리스트를 가져오는 예제소스입니다.
$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);
}
}
반응형
'PHP' 카테고리의 다른 글
CentOS7 php 5.4 -> 7.4 버전 올리기 php7.4 php5.4 (0) | 2022.04.28 |
---|---|
PHP 이미지 다운로드 또는 바로보기 (0) | 2022.02.11 |
CentOS, PHP5.3에 Zend Guard Loader 설치하기 (0) | 2022.01.18 |
php7 버젼에서 ioncube loader 설치 방법 (0) | 2022.01.18 |
그누보드 https 보안서버 연결시 오류 (0) | 2022.01.18 |
댓글