latest.skin.php 파일에서 <strong>{$list[$i]['subject']}</strong> 글자수 조정은 어디서하나요? 정보
latest.skin.php 파일에서 <strong>{$list[$i]['subject']}</strong> 글자수 조정은 어디서하나요?본문
<table cellpadding=0 cellspacing=0 border=0 STYLE='margin-top:10px; width=100%>
<tr>
<? $img = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $img)) {
$img = "<img src='$data_path/$img' width='$img_width' height='$img_height' title='$title'>";
} else if(preg_match("/\.(swf|wmv|asf|flv)$/i", $img)){
$img = "<script>doc_write(flash_movie('$data_path/$img', 'flash$i', '$img_width', '$img_height', 'transparent'));</script>";
}
?>
<?
echo "<td style='width:$img_width;height:$img_height;border:0px solid #DDDDDD;padding:0px;' align='center' vAlign='top'><a href='{$list[$i][wr_link1]}' target='_blank' onfocus='this.blur()' title='$title'>$img</a></td></tr>";
echo "<TR><td align='center' height='20'><a href='{$list[$i]['href']}'><font style='font-family:돋움; font-size:9pt; color:#2C88B9;'>
<strong>{$list[$i]['subject']}</strong> // 여기 {$list[$i]['subject']}의 글자수는 어디서 조정하나요???
</font></td></TR>";
?>
<tr>
<td align='center'><?=$list[$i][wr_8]?></td></TR></table>
[배너]
[리스트링크설명]<<<===여기 글자수 조정하고싶어요..
[배너설명]
이런구조예요..
도움 부탁 드립니다. 감사합니다.
<tr>
<? $img = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $img)) {
$img = "<img src='$data_path/$img' width='$img_width' height='$img_height' title='$title'>";
} else if(preg_match("/\.(swf|wmv|asf|flv)$/i", $img)){
$img = "<script>doc_write(flash_movie('$data_path/$img', 'flash$i', '$img_width', '$img_height', 'transparent'));</script>";
}
?>
<?
echo "<td style='width:$img_width;height:$img_height;border:0px solid #DDDDDD;padding:0px;' align='center' vAlign='top'><a href='{$list[$i][wr_link1]}' target='_blank' onfocus='this.blur()' title='$title'>$img</a></td></tr>";
echo "<TR><td align='center' height='20'><a href='{$list[$i]['href']}'><font style='font-family:돋움; font-size:9pt; color:#2C88B9;'>
<strong>{$list[$i]['subject']}</strong> // 여기 {$list[$i]['subject']}의 글자수는 어디서 조정하나요???
</font></td></TR>";
?>
<tr>
<td align='center'><?=$list[$i][wr_8]?></td></TR></table>
[배너]
[리스트링크설명]<<<===여기 글자수 조정하고싶어요..
[배너설명]
이런구조예요..
도움 부탁 드립니다. 감사합니다.
댓글 전체
그누보드 내부 함수인 cut_str를 사용하면 됩니다...
<strong>{cut_str($list[$i]['subject'],50)}</strong>
cut_str('리스트링크설명',50)
50을 원하는 값으로 설정하면 되구요..
php함수인 substr를 사용 할 수도 있습니다..
substr('리스트링크설명',0,50)
<strong>{cut_str($list[$i]['subject'],50)}</strong>
cut_str('리스트링크설명',50)
50을 원하는 값으로 설정하면 되구요..
php함수인 substr를 사용 할 수도 있습니다..
substr('리스트링크설명',0,50)
감사드립니다.