1

如何将下面的锚文本限制为仅显示 50 个字符?

echo '<td style="" class="pointlink"><span class="pointlink"><a href="http://'.$rowad["1site"].'">'.$rowad["1site"].'</a></td>';
4

3 回答 3

7

substr

或者,您可以使用 CSS:

.pointlink {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

根据需要调整宽度,将自动使用省略号将文本截断。

于 2012-09-03T21:02:55.857 回答
3

您可以使用该substr功能将文本减少到 50 个字符

function cut_text( $text, $len ) {
    return strlen( $text ) > $len ?
        substr( $text, 0, $len ) + '...' :
        $text;
}
echo '<td style="" class="pointlink"><span class="pointlink"><a href="http://'.$rowad["1site"].'">' . cut_text( $rowad["1site"], 50 ) . '</a></td>';
于 2012-09-03T21:01:34.547 回答
2

你可以使用substr函数,比如

echo '<td style="" class="pointlink"><span class="pointlink"><a href="http://'.$rowad["1site"].'">'.substr($rowad["1site"],0,50).'</a></td>';

于 2012-09-03T21:02:13.233 回答