この関数が行う2つの部分にテキストを分割する必要がありますが、単語の途中で途切れます。単語の最初または最後を計算して、数文字を与えるか、または取る必要があります。
文字範囲は130文字以下である必要があるため、単語数に基づくことはできません。
$str = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum"
$first125 = substr($str, 0, 125);
$theRest = substr($str, 125);
ありがとう