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

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년 전 조회 177
9년 전 조회 162
9년 전 조회 187
9년 전 조회 248
9년 전 조회 203
9년 전 조회 352
9년 전 조회 250
9년 전 조회 282
9년 전 조회 257
9년 전 조회 218
9년 전 조회 237
9년 전 조회 346
9년 전 조회 246
9년 전 조회 267
9년 전 조회 376
9년 전 조회 313
10년 전 조회 245
10년 전 조회 294
10년 전 조회 227
10년 전 조회 231
10년 전 조회 275
10년 전 조회 233
10년 전 조회 271
10년 전 조회 257
10년 전 조회 613