如何将下面的锚文本限制为仅显示 50 个字符?
echo '<td style="" class="pointlink"><span class="pointlink"><a href="http://'.$rowad["1site"].'">'.$rowad["1site"].'</a></td>';
或者,您可以使用 CSS:
.pointlink {
width: 150px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
根据需要调整宽度,将自动使用省略号将文本截断。
您可以使用该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>';
你可以使用substr
函数,比如
echo '<td style="" class="pointlink"><span class="pointlink"><a href="http://'.$rowad["1site"].'">'.substr($rowad["1site"],0,50).'</a></td>';