get_board_names 함수는 어디에 잇나요?
본문
get_board_names 함수는 어디에 잇나요?
url.lib.php 인쿠르드 하니 맨 위에 선언이 되어 잇네요.
신기한건 이 그누보드 전체에서 get_board_names 검색하면 안나온다는거..ㅋㅋ
답변 1
lib/get_data.lib.php
function get_board_names(){
global $g5;
static $boards = array();
$boards = run_replace('get_board_names_cache', $boards);
if( ! $boards ){
$sql = " select bo_table from {$g5['board_table']} ";
$result = sql_query($sql);
while ($row = sql_fetch_array($result)) {
$boards[] = $row['bo_table'];
}
}
return $boards;
}
답변을 작성하시기 전에 로그인 해주세요.