답변 2개
채택된 답변
+20 포인트
답변에 대한 댓글 3개
�
탐린
5년 전
�
탐린
5년 전
에코로 찍어보니 경로가 나오는군요 ㅡㅡ;;
왜 이건 메뉴얼도 설명도 없는 것일까요...
왜 이건 메뉴얼도 설명도 없는 것일까요...
�
폴라베어
5년 전
-_-...
$tset['index']가 거짓이면 /index/basic을 기본 으로 설정
변수를 대입해서 순서대로 읽어보세요
[code]
// 파일경로 체크
$nt_index_path = G5_THEME_PATH.'/index';
$nt_index_url = G5_THEME_URL.'/index';
// 인덱스 파일
if(!$tset['index'])
$tset['index'] = 'basic';
$is_index = true;
$is_wing = false;
include_once(G5_THEME_PATH.'/head.php');
//인덱스
if(is_file($nt_index_path.'/'.$tset['index'].'.php')) {
include_once($nt_index_path.'/'.$tset['index'].'.php');
}
[/code]
$tset['index']가 거짓이면 /index/basic을 기본 으로 설정
변수를 대입해서 순서대로 읽어보세요
[code]
// 파일경로 체크
$nt_index_path = G5_THEME_PATH.'/index';
$nt_index_url = G5_THEME_URL.'/index';
// 인덱스 파일
if(!$tset['index'])
$tset['index'] = 'basic';
$is_index = true;
$is_wing = false;
include_once(G5_THEME_PATH.'/head.php');
//인덱스
if(is_file($nt_index_path.'/'.$tset['index'].'.php')) {
include_once($nt_index_path.'/'.$tset['index'].'.php');
}
[/code]
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
//인덱스
if(is_file($nt_index_path.'/'.$tset['index'].'.php')) {
include_once($nt_index_path.'/'.$tset['index'].'.php');
}
여기가 경로같은데 어디인지 궁금합니다 ~