<?php
$string = 'really long string of text and such that people will get to view when they click read MOAR and read MOAR so I get MOAR views and shit';
//Will return really long string of text...
echo substr($string,0,25) . '...';
?>