안녕하세요.
이 기능이 필요해서 며칠전에 만들어봤는데 팁게시판에 공유좀 해보려고요~
먼저 /lib/common.lib.php 입니다.
318번 째 줄 아래의 그누보드 관련 함수 모음 아래에다
(중략)
[code]
** 그누보드 관련 함수 모음
**
*************************************************************************/
// 시간 계산 함수 추가
function time_sec($time){
$mktime = mktime($time['tm_hour'], $time['tm_min'], $time['tm_sec'], ($time['tm_mon']+1), $time['tm_mday'], ($time['tm_year']+1900));
return $mktime;
}
[/code]
를 추가해줍니다.
그 다음에 조금 내려와서
[code]
$list['comment_cnt'] = '';
$list['comment_cnt'] = "<span class=\"cnt_cmt\">".$list['wr_comment']."</span>";
$list['comment_cnt'] = "<span class=\"cnt_cmt\">".$list['wr_comment']."</span>";
[/code]
문구 아래에
[code]
// 시간 계산(8.11 추가)
$today = strptime(G5_TIME_YMDHIS, "%Y-%m-%d %H:%M:%S");
$wr_date = strptime($list['wr_datetime'], "%Y-%m-%d %H:%M:%S");
$list['diff_time'] = time_sec($today) - time_sec($wr_date);
if($list['diff_time']<60){
$list['diff_time'] = "방금"; // 60초 미만은 방금으로 표시
}else if($list['diff_time']>=60&&$list['diff_time']<3600){
$list['diff_time'] = floor($list['diff_time']/60)."분"; // 1시간 미만은 분으로 표시
}else if($list['diff_time']>=3600&&$list['diff_time']<86400){
$list['diff_time'] = floor($list['diff_time']/3600)."시간"; //24시간 미만은 시간으로 표시
}else if($list['diff_time']>=86400){
$list['diff_time'] = floor($list['diff_time']/86400)."일"; //그 이상은 일로 표시
}
[/code]
를 추가해줍니다.
그 다음 최근게시물 스킨폴더(/skin/latest/스킨명/)의 latest.skin.php나 게시판 스킨폴더(/skin/board/스킨명/)의 list.skin.php의
[code]
<?php echo $list['datetime2'] ?>
[/code]
부분을
[code]
<?php echo $list['diff_time'] ?>
[/code]
로 수정해주시면 게시한 시간 대신 "방금/몇 분/몇 시간/몇 일" 전으로 표시되게 됩니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2061 | ||
| 229 | 20년 전 | 3136 | ||
| 228 | 20년 전 | 3322 | ||
| 227 | 20년 전 | 2394 | ||
| 226 | 20년 전 | 5475 | ||
| 225 | 20년 전 | 2522 | ||
| 224 | 20년 전 | 2968 | ||
| 223 | 20년 전 | 4204 | ||
| 222 | 20년 전 | 2604 | ||
| 221 | 20년 전 | 2290 | ||
| 220 | 20년 전 | 3676 | ||
| 219 | 20년 전 | 2070 | ||
| 218 | 20년 전 | 3565 | ||
| 217 | 20년 전 | 2478 | ||
| 216 | 20년 전 | 2910 | ||
| 215 | 20년 전 | 2226 | ||
| 214 | 20년 전 | 3336 | ||
| 213 | 20년 전 | 2917 | ||
| 212 | 20년 전 | 3050 | ||
| 211 | 20년 전 | 2145 | ||
| 210 | 20년 전 | 1893 | ||
| 209 | 20년 전 | 2353 | ||
| 208 | 20년 전 | 1975 | ||
| 207 | 20년 전 | 1675 | ||
| 206 | 20년 전 | 1855 | ||
| 205 | 20년 전 | 3950 | ||
| 204 | 20년 전 | 1672 | ||
| 203 | 20년 전 | 2010 | ||
| 202 | 20년 전 | 2359 | ||
| 201 | 20년 전 | 1825 | ||
| 200 | 20년 전 | 2955 | ||
| 199 | 20년 전 | 2004 | ||
| 198 | 20년 전 | 2084 | ||
| 197 | 20년 전 | 3650 | ||
| 196 | 20년 전 | 2980 | ||
| 195 | 20년 전 | 2093 | ||
| 194 | 20년 전 | 10244 | ||
| 193 | 20년 전 | 2243 | ||
| 192 | 20년 전 | 1600 | ||
| 191 | 20년 전 | 2665 | ||
| 190 | 20년 전 | 2290 | ||
| 189 | 20년 전 | 1680 | ||
| 188 | 20년 전 | 1476 | ||
| 187 | 20년 전 | 1903 | ||
| 186 | 20년 전 | 1711 | ||
| 185 | 20년 전 | 1760 | ||
| 184 | 20년 전 | 2349 | ||
| 183 | 20년 전 | 1561 | ||
| 182 | 20년 전 | 1484 | ||
| 181 | 20년 전 | 1624 | ||
| 180 | 20년 전 | 2718 | ||
| 179 | 20년 전 | 1802 | ||
| 178 | 20년 전 | 1857 | ||
| 177 | 20년 전 | 1983 | ||
| 176 | 20년 전 | 1802 | ||
| 175 | 20년 전 | 1872 | ||
| 174 | 20년 전 | 1694 | ||
| 173 | 20년 전 | 2058 | ||
| 172 | 20년 전 | 1786 | ||
| 171 | 20년 전 | 2557 | ||
| 170 | 20년 전 | 2269 | ||
| 169 | 20년 전 | 2551 | ||
| 168 | 20년 전 | 1480 | ||
| 167 | 20년 전 | 1578 | ||
| 166 | 20년 전 | 2156 | ||
| 165 | 20년 전 | 1627 | ||
| 164 | 20년 전 | 3768 | ||
| 163 | 20년 전 | 2663 | ||
| 162 | 20년 전 | 2082 | ||
| 161 | 20년 전 | 2788 | ||
| 160 | 20년 전 | 1733 | ||
| 159 | 20년 전 | 1609 | ||
| 158 | 20년 전 | 2563 | ||
| 157 | 20년 전 | 1488 | ||
| 156 | 20년 전 | 1738 | ||
| 155 | 20년 전 | 3227 | ||
| 154 | 20년 전 | 1895 | ||
| 153 | 20년 전 | 1623 | ||
| 152 | 20년 전 | 4950 | ||
| 151 | 20년 전 | 4576 | ||
| 150 | 20년 전 | 3514 | ||
| 149 | 20년 전 | 3794 | ||
| 148 | 20년 전 | 7071 | ||
| 147 | 20년 전 | 3549 | ||
| 146 | 20년 전 | 2619 | ||
| 145 | 20년 전 | 2614 | ||
| 144 | 20년 전 | 7166 | ||
| 143 | 20년 전 | 4599 | ||
| 142 | 20년 전 | 1900 | ||
| 141 | 20년 전 | 3251 | ||
| 140 | 20년 전 | 1960 | ||
| 139 | 20년 전 | 1575 | ||
| 138 | 20년 전 | 2306 | ||
| 137 | 20년 전 | 1779 | ||
| 136 | 20년 전 | 1453 | ||
| 135 | 20년 전 | 1784 | ||
| 134 | 20년 전 | 2966 | ||
| 133 | 20년 전 | 2448 | ||
| 132 | 20년 전 | 1705 | ||
| 131 | 20년 전 | 1638 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기