Skip to content

Instantly share code, notes, and snippets.

@puneetkay
Created June 12, 2015 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save puneetkay/71dcbc4ea13fb2763c0c to your computer and use it in GitHub Desktop.
Save puneetkay/71dcbc4ea13fb2763c0c to your computer and use it in GitHub Desktop.
Limit string by words
function string_limit_words($string, $word_limit)
{
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment