Show first sentence of blog post in blog roll

Assuming you want to cut off a string after the first full stop you could use something like this:

$the-content = "This is the first sentence. And this is the second";
$cut-in-two = explode('.', $the-content, 2);
$first-sentence = $cut-in-two[0];