bbs/list.php파일에서 $list_num 은 무엇이에요?
본문
bbs/list.php파일에서 빨간색으로 표시한 $list_num 과 $list[$i]['num'] 은 무슨 의미에요?
// 페이지의 공지개수가 목록수 보다 작을 때만 실행
if($page_rows > 0) {
$result = sql_query($sql);
$k = 0;
while ($row = sql_fetch_array($result))
{
// 검색일 경우 wr_id만 얻었으므로 다시 한행을 얻는다
if ($sca || $stx)
$row = sql_fetch(" select * from {$write_table} where wr_id = '{$row['wr_parent']}' ");
$list[$i] = get_list($row, $board, $board_skin_url, G5_IS_MOBILE ? $board['bo_mobile_subject_len'] : $board['bo_subject_len']);
if (strstr($sfl, 'subject')) {
$list[$i]['subject'] = search_font($stx, $list[$i]['subject']);
}
$list[$i]['is_notice'] = false;
$list_num = $total_count - ($page - 1) * $list_page_rows - $notice_count;
$list[$i]['num'] = $list_num - $k;
$i++;
$k++;
}
}
답변 2
총 게시물 100개인 게시판 2페이지로 예를들면 (페이지당 목록수 15개 가정)
1페이지 순번--> 100, 99, 98 ~~~86
2페이지는 순번 85 부터 시작 되겠죠
85 = 100 - (2 - 1) * 15 <-- 85가 $list_num 값이 되는 것이죠
3페이지라면 $list_num = 70
즉 해당 페이지 첫번째 게시물 번호인 것이죠
$list_num은 X페이지 첫 번째 게시물 수
$list[$i]['num']은 X페이지 게시물 번호