Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save celticwebdesign/2190d53575c6d2c2bf0213e239df6a53 to your computer and use it in GitHub Desktop.
Save celticwebdesign/2190d53575c6d2c2bf0213e239df6a53 to your computer and use it in GitHub Desktop.
// https://stackoverflow.com/questions/965235/how-can-i-truncate-a-string-to-the-first-20-words-in-php
function limit_text($text, $limit) {
if (str_word_count($text, 0) > $limit) {
$words = str_word_count($text, 2);
$pos = array_keys($words);
$text = substr($text, 0, $pos[$limit]) . '...';
}
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment