Jump to content

Breaking up an article


feri_soft

Recommended Posts

[code]
<?
function filter_wordlimit($string, $length=50, $ellipsis='...'){
return count($words = preg_split('/\s+/', ltrim($string), $length + 1)) > $length ? rtrim(substr($string, 0, strlen($string) - strlen(end($words)))) . $ellipsis : $string;
}

echo filter_wordlimit('I can put a really long paragraph in here if i want to, and it will trim it down to 20 words long','20');
?>
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.