Steve, I appreciate the reply, however I found the answer elsewhere, so I am submitting it here to all that would read it.
First you have to determine the maximum length you'd like for the abstract. Then, using substr(), you can grab that much of the string. Of course, this might be the middle of the word so you can use strrpos() to get the position of the last space. Then use substr() again to grab everything until that space.
function Abstract($text,$length)
{
$text=substr($text,0,$length);
$lastspacepos=strrpos($text,' ');
return substr($text,0,$lastspacepos);
}
You can call this like:
$abstract=Abstract($full_story_text,255);