Kaynak link; https://stackoverflow.com/questions/...ry-5-sentences
$str="long sentence. long sentence. ";
$lines=explode('. ', $str); // Break sentence with ". "
$i=1;
foreach($lines as $l){
echo $lines;
if ($i%5==0){echo "<br /><br />";}
i++;
}