답변 2개
채택된 답변
+20 포인트
5년 전
common.lib.php에 아래 함수 추가하시고 게시판 목록스킨에서 날짜부분에 get_time($list[$i]['wr_datetime]) 으로 출력하시면 됩니다.
if(!function_exists('get_time')){
function get_time($datetime){
$past_timestamp = strtotime($datetime);
$curr_timestamp = strtotime(G5_TIME_YMDHIS);
$total_time = $curr_timestamp - $past_timestamp;
$days = floor($total_time/86400);
// $time = $total_time - ($days*86400);
$hours = floor($total_time/3600);
// $time = $time - ($hours*3600);
$min = floor($total_time/60);
$sec = $total_time;
$return = '';
if($days>0){
$return = "{$days}일 전";
}elseif($hours>0){
$return = "{$hours}시간 전";
}elseif($min>0){
$return = "{$min}분 전";
}else{
$return = "{$sec}초 전";
}
return $return;
}
}
로그인 후 평가할 수 있습니다
답변에 대한 댓글 2개
댓글을 작성하려면 로그인이 필요합니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인전체 질문 목록
채택
답변대기
답변대기
채택
답변대기