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
<?php

function trunc($phrase, $max_words)
{
   $phrase_array = explode(' ',$phrase);
   if(count($phrase_array) > $max_words && $max_words > 0)
      $phrase = implode(' ',array_slice($phrase_array, 0, $max_words)).'...'  
   return $phrase;
}
?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS