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에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5877 | 9년 전 | 242 | ||
| 5876 | 9년 전 | 290 | ||
| 5875 | 9년 전 | 267 | ||
| 5874 | 9년 전 | 301 | ||
| 5873 | 9년 전 | 412 | ||
| 5872 | 9년 전 | 293 | ||
| 5871 | 9년 전 | 254 | ||
| 5870 | 9년 전 | 277 | ||
| 5869 | 9년 전 | 390 | ||
| 5868 | 9년 전 | 296 | ||
| 5867 | 9년 전 | 252 | ||
| 5866 | 9년 전 | 253 | ||
| 5865 | 9년 전 | 259 | ||
| 5864 | 9년 전 | 205 | ||
| 5863 | 9년 전 | 211 | ||
| 5862 | 9년 전 | 395 | ||
| 5861 | 9년 전 | 454 | ||
| 5860 | 9년 전 | 242 | ||
| 5859 | 9년 전 | 239 | ||
| 5858 | 9년 전 | 203 | ||
| 5857 | 9년 전 | 225 | ||
| 5856 | 9년 전 | 323 | ||
| 5855 | 9년 전 | 251 | ||
| 5854 | 9년 전 | 178 | ||
| 5853 | 9년 전 | 234 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기