我想从数据库中获取一些字段值并将它们呈现在 html 上。
但是其中一些比 div 的宽度长,所以我想在它们后面加上 3 个点,如果它们比 30 个字符长。
windows vs mac os x-> windows vs m...
threads about windows vista -> threads about win...
我怎样才能做到这一点?
我想从数据库中获取一些字段值并将它们呈现在 html 上。
但是其中一些比 div 的宽度长,所以我想在它们后面加上 3 个点,如果它们比 30 个字符长。
windows vs mac os x-> windows vs m...
threads about windows vista -> threads about win...
我怎样才能做到这一点?
如果您需要多次执行此类功能,请考虑以下功能:
function truncate($string, $limit, $break = '.', $pad = '...')
{
// return with no change if string is shorter than $limit
if(strlen($string) <= $limit) return $string;
// is $break present between $limit and the end of the string?
if(false !== ($breakpoint = strpos($string, $break, $limit)))
{
if($breakpoint < strlen($string) - 1)
{
$string = substr($string, 0, $breakpoint) . $pad;
}
}
return $string;
}
用法:
echo truncate($string, 30);
从你的例子来看,你似乎并不关心保留单词,所以这里是:
if (strlen($str) > 30)
{
echo substr($str, 0, 30) . '...';
}
查看wordwrap(),这应该是您正在寻找的。