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

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년 전 조회 176
9년 전 조회 161
9년 전 조회 182
9년 전 조회 245
9년 전 조회 200
9년 전 조회 349
9년 전 조회 250
9년 전 조회 281
9년 전 조회 255
9년 전 조회 216
9년 전 조회 235
9년 전 조회 344
9년 전 조회 243
9년 전 조회 264
9년 전 조회 371
9년 전 조회 309
9년 전 조회 244
9년 전 조회 286
9년 전 조회 223
9년 전 조회 228
9년 전 조회 269
10년 전 조회 231
10년 전 조회 270
10년 전 조회 253
10년 전 조회 609