How can I get the first n characters of a string in PHP? What\'s the fastest way to trim a string to a specific number of characters, and append \'...\' if needed?
Use substring
http://php.net/manual/en/function.substr.php
$foo = substr("abcde",0, 3) . "...";