개발자의 끄적끄적

[php] php 디렉토리 목록 가져오는 방법 본문

개발/php

[php] php 디렉토리 목록 가져오는 방법

효벨 2022. 6. 13. 01:00
728x90
반응형

[php] php 디렉토리 목록 가져오는 방법

 

 

php 에서

 

특정 폴더의 하위 폴더들 목록을

 

조회해야 하는 경우가 있습니다.

 

그럴때는 아래 함수를 활용하시면 됩니다.

 

    public function dir_lst($dirname){
        $result_array = array();
        $handle = opendir($dirname);
        while ($file = readdir($handle)) {
            if($file == '.'||$file == '..') continue;
            if (is_dir($dirname.$file) ) {
                $result_array[$file] = $file;
            }
        }
        closedir($handle);
        rsort($result_array);
        return $result_array;
    }

 

추가적으로

 

폴더명이 숫자로 되어있는 폴더들만 추출하고 싶은 경우

 

아래와 같이 intval 을 이용하여

 

폴더명을 정수화하면 문자명으로 된 폴더는 0으로 변경되기때문에

 

0보다 큰 폴더명만 담아서 리턴하게되면

 

숫자로만 이루어진 폴더명도 추출이 가능합니다!

 

    public function dir_lst_num($dirname){
        $result_array = array();
        $handle = opendir($dirname);
        while ($file = readdir($handle)) {
            if($file == '.'||$file == '..') continue;
            if (is_dir($dirname.$file) && @intval($file) > 0 ) {
                $result_array[$file] = @intval($file);
            }
        }
        closedir($handle);
        rsort($result_array);
        return $result_array;
    }

 

참고들 하세요!

 

 

출처 : https://yshbabo.tistory.com/81

 

[php 함수] 폴더 / 디렉토리 목록 가져오기 opendir readdir is_dir

[php 함수] 폴더 / 디렉토리 목록 가져오기 opendir  readdir  is_dir [php 함수] 폴더 / 디렉토리 목록 가져오기 opendir  readdir  is_dir <? /**********************************************************..

yshbabo.tistory.com

 

반응형
Comments