답변 1개
채택된 답변
+20 포인트
10년 전
common.php 파일의 아래 코드에서 처리됩니다.
Copy
// common.php 파일을 수정할 필요가 없도록 확장합니다.$extend_file = array();$tmp = dir(G5_EXTEND_PATH);while ($entry = $tmp->read()) { // php 파일만 include 함 if (preg_match("/(\.php)$/i", $entry)) $extend_file[] = $entry;} if(!empty($extend_file) && is_array($extend_file)) { natsort($extend_file); foreach($extend_file as $file) { include_once(G5_EXTEND_PATH.'/'.$file); }}unset($extend_file);
로그인 후 평가할 수 있습니다
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인