get_board_names 함수는 어디에 잇나요?

매출이 오르면 내리는 수수료! 지금 수수료센터에서 전자결제(PG)수수료 비교견적 신청해 보세요!
get_board_names 함수는 어디에 잇나요?

QA

get_board_names 함수는 어디에 잇나요?

답변 1

본문

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;
}

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 2,352
© SIRSOFT
현재 페이지 제일 처음으로