$wholeTitle = "really long text... over 250 characters..."
$smallPiece = substr($wholeTitle,0,251); // 1 over
// validation
if((substr($smallPiece,-1) == " " && substr($smallPiece,-2,-1) !=" ") ) || (substr($smallPiece,-1) != " " && substr($smallPiece,-2,-1) == " ") {
echo $smallPiece;
} else {
$smallPiece = substr($smallPiece,0,strrpos(substr($smallPiece,0,250), " "));
echo $smallPiece;
}
...something like that. ...