그누보드의 최신글 기능을 사용하다보면 인기순, 랜덤순등 여러가지 기능을 구현해야 할 때가 있습니다.
이번에 소개할 기능은 게시판 최신글을 최신글 스킨에 랜덤으로 불러오는 기능을 보도록 하겠습니다.
사용방법은 www/lib/latest.lib.php 파일에 아래의 함수를 추가 시켜줍니다.
<?php
/* www/lib/latest.lib.php */
// 최신글 랜덤으로 추출
function latest_random($skin_dir='', $bo_table, $rows=10, $subject_len=40, $cache_time=1, $options='')
{
global $g5;
if (!$skin_dir) $skin_dir = 'basic';
if(preg_match('#^theme/(.+)$#', $skin_dir, $match)) {
if (G5_IS_MOBILE) {
$latest_skin_path = G5_THEME_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
if(!is_dir($latest_skin_path))
$latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
$latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
} else {
$latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
$latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
}
$skin_dir = $match[1];
} else {
if(G5_IS_MOBILE) {
$latest_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
$latest_skin_url = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
} else {
$latest_skin_path = G5_SKIN_PATH.'/latest/'.$skin_dir;
$latest_skin_url = G5_SKIN_URL.'/latest/'.$skin_dir;
}
}
$cache_fwrite = false;
if(G5_USE_CACHE) {
$cache_file = G5_DATA_PATH."/cache/latest-{$bo_table}-{$skin_dir}-{$rows}-{$subject_len}.php";
if(!file_exists($cache_file)) {
$cache_fwrite = true;
} else {
if($cache_time > 0) {
$filetime = filemtime($cache_file);
if($filetime && $filetime < (G5_SERVER_TIME - 3600 * $cache_time)) {
@unlink($cache_file);
$cache_fwrite = true;
}
}
if(!$cache_fwrite)
include($cache_file);
}
}
if(!G5_USE_CACHE || $cache_fwrite) {
$list = array();
$sql = " select * from {$g5['board_table']} where bo_table = '{$bo_table}' ";
$board = sql_fetch($sql);
$bo_subject = get_text($board['bo_subject']);
$tmp_write_table = $g5['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
$sql = " select * from {$tmp_write_table} where wr_is_comment = 0 order by rand() desc limit 0, {$rows} ";
$result = sql_query($sql);
for ($i=0; $row = sql_fetch_array($result); $i++) {
$list[$i] = get_list($row, $board, $latest_skin_url, $subject_len);
}
if($cache_fwrite) {
$handle = fopen($cache_file, 'w');
$cache_content = "<?php\nif (!defined('_GNUBOARD_')) exit;\n\$bo_subject='".$bo_subject."';\n\$list=".var_export($list, true)."?>";
fwrite($handle, $cache_content);
fclose($handle);
}
}
ob_start();
include $latest_skin_path.'/latest.skin.php';
$content = ob_get_contents();
ob_end_clean();
return $content;
}
?>
위의 소스코드를 www/lib/latest.lib.php 파일의 제일 하단에
php 문법이 닫히는 ?> 구문전에 복사해서 넣으시면 됩니다.
사용방법
<?php
/* 최신글을 노출시킬 페이지 */
echo latest_random("스킨명", "게시판명", 출력갯수, 글자수);
?>
사용방법 예시
<?php
/* 최신글을 노출시킬 페이지 */
echo latest_random("basic", "test", 10, 20);
?>
위의 소스를 간단하게 설명하자면
게시판명이 test라는 게시판의 게시글을 랜덤순으로
10개를 가져오고, 제목은 25글자 까지만 가져온다. 라고 할 수 있겠습니다.
만약 새로고침을 했을때 랜덤순으로 계속 바뀌지 않는데면
캐시 설정을 끄고 적용하시면 되겠습니다.
캐시 설정을 하는 방법은 아래의 링크에서 확인 할 수 있습니다.