可能重复:
How to Truncate a string in PHP to the word closest to a certain number of characters?
我有一串关键字如下
word1, word3, word3, word4, word5
现在说这个名单是400个字符长。我只希望关键字达到255个字符,但我也想修剪最后一个字,因为它可能只有半个字。
假设我修剪关键字列表并以此结束
word1, word3, word3, wo
如果只是半个字
,我如何确保修剪最后一个单词有关于此的任何想法吗?我不知道从哪里开始
顺便说一句,我正在使用PHP
答案 0 :(得分:2)
$str = wordwrap($str, 28);
$str = explode("\n", $str);
$str = $str[0]