Skip to content

Instantly share code, notes, and snippets.

@pa-gerrit
Created September 21, 2012 01:59
Show Gist options
  • Save pa-gerrit/3759372 to your computer and use it in GitHub Desktop.
Save pa-gerrit/3759372 to your computer and use it in GitHub Desktop.
function ShortenText($text, $numb) {
// Change to the number of characters you want to display
$chars = $numb;
$text = $text." ";
$text = substr($text,0,$chars);
//$text = substr($text,0,strrpos($text,' '));
$text = $text."...";
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment