
Truncates Words
August 26, 2007This code truncates the sentence into specified number of words.
//-- truncates entries
$entry = "This is where the long entry is placed.";
$words = split(" ",$entry);
$excerpt = join(" ",array_slice($words,0,50));
echo $excerpt;
echo " [more]";
–
From my codix.