디렉토리의 모든 파일을 읽어 목록으로 만들기 입니다.

function listFile($dir, $file_type)
 {
 chdir($dir);
 if (!$file_type)
 $ls_str = " ls -R * ";
 else
 $ls_str = " ls -R *." . $file_type;

 $fp = popen($ls_str, "r");
 while(!feof($fp)){
 $line = fgets($fp,50);
 $line = trim($line);

 if(substr($line,strlen($line)-1,1) == ":"){ //디렉토리 처리부분
$subdir = $line;
 $subdir = substr($subdir,0,strlen($line)-1) . "/";
 }

 $htmlfile = explode(".",$line); //html파일 처리부분
if($htmlfile[1] == "html"){
 $fullpath = $subdir . $line;
 }
 }
 pclose($fp);
 return $fullpath;
 }  

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
9년 전 조회 182
9년 전 조회 165
9년 전 조회 188
9년 전 조회 253
9년 전 조회 208
9년 전 조회 353
9년 전 조회 252
9년 전 조회 287
9년 전 조회 260
9년 전 조회 222
9년 전 조회 241
9년 전 조회 350
9년 전 조회 248
9년 전 조회 269
9년 전 조회 377
10년 전 조회 316
10년 전 조회 247
10년 전 조회 299
10년 전 조회 230
10년 전 조회 237
10년 전 조회 279
10년 전 조회 238
10년 전 조회 277
10년 전 조회 262
10년 전 조회 616