剥离和修剪关键字列表?

时间:2011-12-11 22:45:45

标签: php

  

可能重复:
  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

1 个答案:

答案 0 :(得分:2)

$str = wordwrap($str, 28);
$str = explode("\n", $str);
$str = $str[0]