좌측메뉴 인클루드 문의드립니다. > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

좌측메뉴 인클루드 문의드립니다. 정보

좌측메뉴 인클루드 문의드립니다.

본문

안녕하세요.
게시판 별로 아래 소스를 이용하여 좌측메뉴 html을 불러오고 있습니다.
혹시 이 소스를 if($bo_table=="test1_1,test1_2,test1_3"){ //1
이런 형태로 조금 짧게 줄일 수 있는 방법이 없을까요?
답변 부탁드립니다.


<?
if($bo_table=="test1_1"){ //1
  include_once("$g4[path]/inc/left_menu1.html");
}
if($bo_table=="test1_2"){ //1
  include_once("$g4[path]/inc/left_menu1.html");
}
if($bo_table=="test1_3"){ //1
  include_once("$g4[path]/inc/left_menu1.html");
}
if($bo_table=="test1_4"){ //1
  include_once("$g4[path]/inc/left_menu1.html");
}
if($bo_table=="test1_5"){ //1
  include_once("$g4[path]/inc/left_menu1.html");
}

?>
  • 복사

댓글 전체

<?
if($bo_table=="test1_1" || $bo_table=="test1_2" || $bo_table=="test1_3" || $bo_table=="t
est1_4" || $bo_table=="test1_5"){ //  1 또는 2....
  include_once("$g4[path]/inc/left_menu1.html");
} else if($bo_table=="test1_6"){
  include_once("$g4[path]/inc/left_menu6.html"); // 6
} else {
  include_once("$g4[path]/inc/left_mene0.html");  // 나머지
}
?>
© SIRSOFT
현재 페이지 제일 처음으로