2014-11-26 2 views
-3

phpbb 포럼의 마지막 글을 표시하는 데이 코드가 있습니다. post_text에서 charatcters limit를 설정하고 싶습니다.phpbb의 마지막 글자 수 제한 문자

<?php 
    // Now let's output the content 
    // A ted vypsat obsah 
    while ($row = $db->sql_fetchrow($result)) 
    { 
$url = generate_board_url() . "/viewtopic.{$phpEx}?f={$row['forum_id']}&amp;t={$row['topic_id']}&amp;p={$row['post_id']}#p{$row['post_id']}"; //added fedforum to url 
$urlmini = generate_board_url() . "/memberlist.{$phpEx}?mode=viewprofile&u={$row['poster_id']}"; //added fedforum to url 
//old line $url = generate_board_url() . "viewtopic.{$phpEx}?f={$row['forum_id']}&amp;t={$row['topic_id']}&amp;p={$row['post_id']}#p{$row['post_id']}";  
echo '<small><a target="_blank" href="' . $url . '">' . $row['post_subject']. '</a><br>'. $row['post_text'] .'<br>od: <a target="_blank" href="' . $urlmini . '">' . ucwords($row['username']).'</a>' . ' v '.'<font style="color:#aaa;">' . date("H:i",$row['post_time']).'</font>', '<br><br></small>'; 
    } 
    ?> 

사람이 $row['post_text']에 대한 문자 제한을 설정하는 방법을 알고 있나요?

답변

0

당신은

substr($row['post_text'],0,40); 

를 사용하거나

을 원하는 어떤 한계 (40)를 변경할 수 있습니다