私はの線に沿って何かを探しています
str_split_whole_word($longString, $x)
ここ$longString
で、は文のコレクションであり、$x
は各行の文字長です。かなり長くなる可能性があるので、基本的には配列の形で複数の行に分割したいと思います。
例えば:
$longString = 'I like apple. You like oranges. We like fruit. I like meat, also.';
$lines = str_split_whole_word($longString, $x);
必要な出力:
$lines = Array(
[0] = 'I like apple. You'
[1] = 'like oranges. We'
[2] = and so on...
)