文字列があると仮定しますpatterns also provide us a common vocabulary to describe solutions
。
このsubstr()
文字列なので、patterns also provide us a common vocabulary to desc
。
最後の文字列をにカットする方法はpatterns also provide us a common vocabulary to
?
私のやり方は:
$text = mb_substr($new['text'], 0, 100);
if(mb_substr($text, -1) != ' ') {
$text_expl = explode(' ', $text);
$text = implode(' ', array_splice($text_expl, 0, -1)) . ' ...';
}
もっといいものはありますか?
たぶん、通常の式やいくつかのPHP組み込み関数は、同様のことを行うことができますか?