2

请看图片:

在此处输入图像描述

这是我的社区论坛页面。我在第一行使用#、标题、回复和发布日期。现在我想添加另一个名为 Description 的列,它将显示整个主题的前几行。例如,这里的第二个标题为“计算机组件”,但我想将其显示为“......的组件”。你明白了吗?

无论如何,我将所有数据存储在数据库中。在这里获得更多帮助是我的这个页面的代码。

echo "<table border='0' width='100%' id='table-3'>
<tr><td>#</td><td>Title</td><td>Replies</td><td>Post Date</td></tr>";
$sql = mysql_query("SELECT * FROM topics ORDER BY id DESC");
while ($row = mysql_fetch_array($sql)) {
    $replies = mysql_num_rows(mysql_query("SELECT * FROM replies WHERE
               topic_id='" . $row['id'] . "'"));
    echo "<tr><td>" . $row['id'] . "</td><td><a href='show_topic.php?id=" . $row['id']                                                                                          
          . "'> <b>" . $row['title'] . "</b></a></td><td>" . $replies . "</td><td>" .  
          date("d M Y", $row['date']) . "  </td></tr>";
}
4

4 回答 4

4

如果您要查找完整的单词,这是一个简单的函数,如果内容长于指定的单词数,它将放置“...”:

function excerpt($content,$numberOfWords = 10){     
    $contentWords = substr_count($content," ") + 1;
    $words = explode(" ",$content,($numberOfWords+1));
    if( $contentWords > $numberOfWords ){
        $words[count($words) - 1] = '...';
    }
    $excerpt = join(" ",$words);
    return $excerpt;
}

那么您只需要使用以下方法调用该函数:

excerpt($row['description'],10)
于 2012-12-27T04:39:15.890 回答
4

如果有空格,此功能将修剪文本而不剪切任何单词。否则,它会在长度限制后立即将其切断。

function trim_text($input, $length, $ellipses = true)
{
    if (strlen($input) <= $length) {
        return $input;
    }

    // find last space within length
    $last_space = strrpos(substr($input, 0, $length), ' ');
    if ($last_space === FALSE) {
        $last_space = $length;
    }

    $trimmed_text = substr($input, 0, $last_space);

    // add ellipses
    if ($ellipses) {
        $trimmed_text .= '...';
    }

    return $trimmed_text;
}
于 2012-12-27T04:47:57.267 回答
3

使用substr

substr($row['description '], 0, $length_you_want);
于 2012-12-27T04:33:07.360 回答
0

尝试这样的事情:

<?php 
    $news = strip_tags($row['apal_news']);
    $snews = substr($news,0,50);
    echo $news;
?>
于 2017-09-26T15:12:19.330 回答