최신게시물 제목 글자수를몇글자로 제한 하고 싶습니다.
본문
달력 최신게시물인데요. 제목 글자수를 제한하고 싶습니다.
게시판 관리에서 제목길이를 조정하니 게시판 목록 달력과 최신게시물 달력 제목이 같이 적용 되네요.
최신게시물 제목 출력 되는 부분인데 이리저리 해봐도 잘 안되네요.
<?php if($do_cnt >
0) { ?>
<div class="do-list font-11" style="margin-top:20px;">
<ul>
<?php
for($i = 0; $i < $do_cnt; $i++) {
// 링크이동
$list[$cday][$i]['target'] = '';
if($is_target && $list[$cday][$i]['wr_link1']) {
$list[$cday][$i]['target'] = $is_target;
$list[$cday][$i]['href'] = $list[$cday][$i]['link_href'][1];
}
if($list[$cday][$i]['subject']){
?>
<li>
<a href="<?php echo $list[$cday][$i]['href'];?>"<?php echo $list[$cday][$i]['target'];?>
class="red"> <?php echo $list[$cday][$i]['subject'] ;?>
</a>
</li>
<?php
} //if
}
?>
</ul>
</div>
<?php } ?>
답변 2
<a href="<?php echo $list[$cday][$i]['href'];?>"<?php echo $list[$cday][$i]['target'];?>
class="red"> <?php echo $list[$cday][$i]['subject'] ;?> </a>
--- 아래로 변경 ---
<a href="<?php echo $list[$cday][$i]['href'];?>"<?php echo $list[$cday][$i]['target'];?>
class="red"> <?php echo mb_substr( $list[$cday][$i]['subject'], 0, 10, 'UTF-8' ) ;?> </a>
위에서 mb_substr 의
두번째 인자는 자르기 시작위치
세번째 인자는 자르는 길이(바이트 아님 글자수임 공백도 한글자)
네번째 인자는 인코딩 입니다.