you could always use the substr() function
like this
$string = [blob];
$sub = substr("$string", "0", "50");
echo $sub;
this would print the first 50 char of the blob, i would suggest that you also follow the prev suggestion because you would not want half a word being printed...