웹사이트 관련 팁들을 모아놓은 곳입니다. 좋은팁 공유 합시다.
  • 웹미니 한줄 전광판 영역 입니다.
글 수 186

0

조회 수 : 6228 신고 : 0

작성자 : 웹기프트
포인트 : 17 | 레벨 : 0
<?php 

function getDirectory$path '.'$level ){ 

    
$ignore = array( 'cgi-bin''.''..' ); 
    
// Directories to ignore when listing output. Many hosts 
    // will deny PHP access to the cgi-bin. 

    
$dh = @opendir$path ); 
    
// Open the directory to the handle $dh 
     
    
while( false !== ( $file readdir$dh ) ) ){ 
    
// Loop through the directory 
     
        
if( !in_array$file$ignore ) ){ 
        
// Check that this file is not to be ignored 
             
            
$spaces str_repeat'&nbsp;', ( $level ) ); 
            
// Just to add spacing to the list, to better 
            // show the directory tree. 
             
            
if( is_dir"$path/$file" ) ){ 
            
// Its a directory, so we need to keep reading down... 
             
                
echo "<strong>$spaces $file</strong><br />"
                
getDirectory"$path/$file", ($level+1) ); 
                
// Re-call this same function but on a new directory. 
                // this is what makes function recursive. 
             
            
} else { 
             
                echo 
"$spaces $file<br />"
                
// Just print out the filename 
             
            

         
        } 
     
    } 
     
    
closedir$dh ); 
    
// Close the directory handle 



?>
소중한 댓글 부탁드립니다.
추천수 10단위당 메달이 1개씩 노출되고, 추천수에 따라 배경색이 변하며, 일정수의 추천수를 받을시 BEST 아이콘이 붙게됩니다.
추천수에 따른 배경색 보기 본문으로 바로가기
  • 추천수 50개이상
  • 추천수 30개이상
  • 추천수 20개이상
  • 추천수 10개이상
  • 추천수 3개이상
닫기

댓글 '4'

스마일조아 (118195)

2009.11.04 20:09:00

좋은 정보 감사합니다.
조수아 (200522)

2010.06.04 08:48:43

감사합니다.~~~~~

열혈개미 (207639)

2010.06.18 19:41:39

감사합니다.~~~

제스터 (327481)

2011.09.19 18:32:41

감사합니다~

List of Articles
번호 제목 글쓴이 날짜 추천 수 조회 수sort
46 무단링크 .htaccess에서 막기 [1] title: [ani]깜빡이는 표정빽짱구 2010-12-08   5283
45 웹표준의 규격화된 글이 있어서 올립니다^^ 늘푸른 2010-07-24   5490
44 웹접근성에 대해서.. file [6] title: [ani]깜빡이는 표정빽짱구 2007-11-06 1 5537
43 best of best xp를 빠르게 하자!! file [1] 신념 2005-03-14 20 5570
42 특정 아이피(ip)막기 [1] title: [ani]깜빡이는 표정빽짱구 2011-02-09   5613
41 스마트폰, 태블릿 해상도와 웹브라우저별 해상도 [1] title: [ani]깜빡이는 표정빽짱구 2013-06-03 1 5813
40 best of best 웹디자인..할때 필요할듯. [2] 맑은숲 2005-03-12 27 5894
39 best of best 제홈 메인테이블 소스 [9] title: [ani]깜빡이는 표정빽짱구 2005-01-06 28 6122
38 플래쉬 아래로 레이어가뜰때 해결방법 [1] title: [ani]깜빡이는 표정빽짱구 2009-04-23   6174
37 best of best 창닫기 버튼 title: [ani]깜빡이는 표정빽짱구 2004-08-19 28 6188
36 반복적으로 파일가져오기 [4] 웹기프트 2009-10-12   6228
35 best of best 홈페이지에 FTP 폼 넣기 [5] title: [ani]깜빡이는 표정빽짱구 2005-03-15 52 6238
34 입력한 주민번호로 나이와 성별 알아내기 title: [ani]깜빡이는 표정빽짱구 2004-04-22 10 6312
33 [펌]개인 컴퓨터로 서버만드는 방법[펌] [5] 조민수 2004-07-27 13 6415
32 랜덤 스타일시트 불러오기 [4] 웹기프트 2009-10-11   6579
31 자신만의 favicon 만들어보세요. file [10] title: 버섯이슬이 2010-01-12   6611
30 best of best 서버이전 할경우 이미지네임관련 [4] title: [ani]깜빡이는 표정빽짱구 2005-03-19 32 6612
29 scope="col" 와 scope="row" title: [ani]깜빡이는 표정빽짱구 2011-05-24   6809
28 홈페이지 마우스 커서 (오버시) 바꾸기 [2] title: [ani]깜빡이는 표정빽짱구 2004-10-30 12 6880
27 디렉토리 리스트를 배열로 가져오기 [2] 웹기프트 2009-10-12   7078