웹사이트 관련 팁들을 모아놓은 곳입니다. 좋은팁 공유 합시다.
  • 웹미니 한줄 전광판 영역 입니다.
글 수 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 조회 수
166 seo 점수 알아보는 곳이라네요. title: [ani]깜빡이는 표정빽짱구 2018-10-11   223
165 무단링크 .htaccess에서 막기 [1] title: [ani]깜빡이는 표정빽짱구 2010-12-08   5283
164 모바일 환경에서의 마크업 개발 이슈 title: [ani]깜빡이는 표정빽짱구 2010-12-17   5011
163 페이스북 링크의 정보를 설정하는 방법 file title: [ani]깜빡이는 표정빽짱구 2011-03-06   8150
162 scope="col" 와 scope="row" title: [ani]깜빡이는 표정빽짱구 2011-05-24   6802
161 페이지 전환시 로딩이미지 보이기 [3] title: [ani]깜빡이는 표정빽짱구 2012-05-06   3981
160 제가 쓰고 있는 플래쉬 코딩소스 title: [ani]방울UI 2012-05-09   1225
159 반응형 웹사이트 [1] title: [ani]깜빡이는 표정빽짱구 2012-11-15   4994
158 ssl 보안인증서가 설치 잘되어있는지 확인하는곳 file [1] title: [ani]깜빡이는 표정빽짱구 2012-08-16   2844
157 반응형 웹 참고 사이트(미디어쿼리) file title: [ani]깜빡이는 표정빽짱구 2013-06-03   2277
156 모바일화면 pc에서 확인하기 file title: [ani]깜빡이는 표정빽짱구 2013-12-03   2011
155 [스크랩] HTML5/CSS3 관련 팁 & 튜토리얼 title: 새싹사뎅이 2014-01-14   2067
154 페이스북 og 이미지 캐시 업데이트 title: [ani]깜빡이는 표정빽짱구 2017-07-10   262
153 카카오톡 미리보기 이미지 캐쉬 삭제 title: [ani]깜빡이는 표정빽짱구 2017-07-10   414
152 괜찮은 구글 웹폰트 많네요. file title: [ani]깜빡이는 표정빽짱구 2018-10-23   214
151 웹접근성에 대해서.. file [6] title: [ani]깜빡이는 표정빽짱구 2007-11-06 1 5537
150 플래쉬에 마우스 오른쪽 버튼 클릭시 메뉴줄이기 file [2] title: [ani]깜빡이는 표정빽짱구 2008-03-05 1 8042
149 hit 아이폰/아이패드에서 '홈화면 추가' 아이콘 변경하기 file [1] title: [ani]깜빡이는 표정빽짱구 2011-02-12 1 13011
148 메일링 코딩 스타일 title: [ani]깜빡이는 표정빽짱구 2013-09-29 1 2980
147 스마트폰, 태블릿 해상도와 웹브라우저별 해상도 [1] title: [ani]깜빡이는 표정빽짱구 2013-06-03 1 5812