YesYo.com MintState Forums
뒤로    YesYo.com MintState BBS > Tech > PHP
검색
멤버이름    오토
비밀번호 
 

PHP 디렉토리 정보를 출력(디렉토리 깊이, 예외 파일, 디렉토리 설정)

페이지 정보

작성자 MintState 댓글 0건 조회 6,356회 작성일 18-04-03 11:51

본문

PHP 디렉토리 정보를 출력(디렉토리 깊이, 예외 파일, 디렉토리 설정)

function read_path($path, $depth = 1, $exclude = '') {
	if($depth == 0) {
		return;
	}
	if (!$exclude || !is_array($exclude)) $exclude = array();
	$last_letter  = $path[strlen($path)-1];
	$path  = ($last_letter == '\' || $last_letter == '/') ? $path : $path.DIRECTORY_SEPARATOR;
	$files  = array('files'=>array(), 'dirs'=>array());
	if ($handle = opendir($path)) {
		while (false !== ($file = readdir($handle))) {
			if ($file == '.' || $file == '..') {
				continue;
			}
			if(is_array($exclude) && !in_array($file, $exclude)){
				$file  = $path.$file;
				if (is_dir($file)) {
					$directory_path = $file.DIRECTORY_SEPARATOR;
					$files['dirs'][$directory_path]  = NULL;
				} elseif (is_file($file)) {
					$files['files'][]  = $file;
				}
			}
		}
		closedir($handle);
	}
	$done = [$path=>$files];
	foreach ($done[$path]['dirs'] as $key=>$value) {
		$done[$path]['dirs'][$key] = read_path($key, $depth-1, $exclude);
	}
	return $done[$path];
}

$exclude_file = array("80c53aa1_19359835.jpg","thumb","0002");
$reads = read_path(BASE_DIR.'/data/test', 2, $exclude_file);

댓글목록

등록된 댓글이 없습니다.

Total 165건 1 페이지
PHP 목록
번호 제목 글쓴이 조회 날짜
165 MintState 5360 05-17
164 MintState 6044 05-11
163 MintState 6214 04-05
열람중 MintState 6357 04-03
161 MintState 8179 01-18
160 MintState 6961 08-08
159 MintState 10234 07-31
158 MintState 7921 05-29
157 MintState 6987 02-22
156 MintState 8351 02-21
155 MintState 12237 11-12
154 MintState 9251 12-08
153 MintState 13174 02-26
152 MintState 17457 01-22
151 MintState 11706 07-27
150 MintState 13898 02-10
149 MintState 13302 10-21
148 MintState 17370 05-02
147 MintState 22054 04-18
146 MintState 14883 04-17
145 MintState 15320 04-17
144 MintState 14535 03-14
143 MintState 16214 03-04
142 MintState 16923 01-18
141 MintState 20127 07-02
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2024, YesYo.com MintState. ™