Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Brian Anderson http://crp.crossingscommunity.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Truncate String by Words

This will take a phrase and truncate it at the word level
   1  
   2  <?php
   3  
   4  function trunc($phrase, $max_words)
   5  {
   6     $phrase_array = explode(' ',$phrase);
   7     if(count($phrase_array) > $max_words && $max_words > 0)
   8        $phrase = implode(' ',array_slice($phrase_array, 0, $max_words)).'...'  
   9     return $phrase;
  10  }
  11  ?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS