$a="This is a short paragraph. Take a look";
$a.="This is another short sentence!";
$a.="The last sentence?";
$a.="This is the result!";
//Actually, this is a long sentence.
$b=split("[.!?]",$a,4);
//Absolute period,! Numbers, question marks, etc. are segmented according to your own requirements
for($index=0;$index
print "$index.$b[ $index]
";
}
//Read the array in the loop.
?>