View Single Post
Old 02-11-2009, 06:45 PM   #3 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Default

That's exactly how you do it. I'll share my function I use with you:

php Code:
public static function shorten($szString, $iLength, $szPrepend = '...')
{
    $iChopLength = strlen($szString) - $iLength;

    if ($iChopLength > 0)
    {
        $szString = substr($szString, 0, $iLength - strlen($szPrepend)) . $szPrepend;
    }

    return $szString;
}
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote