My variable $content contains my text. I want to create an excerpt from $content and display the first sentence and if the sentence is shorter than 15
$content
For me the following worked:
$sentences = 2; echo implode('. ', array_slice(explode('.', $string), 0, $sentences)) . '.';