Revision: 3832
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 21, 2007 07:50 by JuliaKM
Initial Code
// makeTeaser: makes a teaser for the number of words specified
function makeTeaser($text, $numWords) {
$words = split(' ', $text);
$words = array_chunk($words, $numWords);
$output = implode(' ', $words[0]);
$output = strip_tags($output) . '...';
return $output;
}
Initial URL
Initial Description
Initial Title
Make an HTML Correct Teaser
Initial Tags
textmate, drupal
Initial Language
HTML